A pong game made with an arduino uno, 2 8x8 led matrix and 2 potentiometers
Like described in src/constants.h
// Pins matrix left
#define PIN_CLK_LEFT (8)
#define PIN_CS_LEFT (9)
#define PIN_DIN_LEFT (10)
// Pins matrix right
#define PIN_CLK_RIGHT (5)
#define PIN_CS_RIGHT (6)
#define PIN_DIN_RIGHT (7)
// Potentiometer left
#define POTENTIOMETER_PIN_LEFT (A1)
// Potentiometer right
#define POTENTIOMETER_PIN_RIGHT (A2)
- Install PlatformIO
$ make
$ make flash
This project is licensed under the terms of the MIT license.