First working multiplayer version

This commit is contained in:
Phew
2026-02-11 23:20:46 +01:00
parent 08686e0fd6
commit a11da1b3d8
7 changed files with 284 additions and 163 deletions

View File

@@ -29,17 +29,17 @@
/* Uncomment below to use the accelerometer base joystic of original implementation */
//#define USE_GYRO_JOYSTICK
#define DATA_PIN 16
#define CLOCK_PIN 17
#define DATA_PIN 0
#define CLOCK_PIN 9
/* Game is rendered to this and scaled down to your strip.
This allows level definitions to work on all strip lengths */
#define VIRTUAL_LED_COUNT 1000
// what type of LED Strip....uncomment to define only one of these
#define USE_APA102
//#define USE_APA102
//#define USE_NEOPIXEL
#define USE_NEOPIXEL
// Check to make sure LED choice was done right
#if !defined(USE_NEOPIXEL) && !defined(USE_APA102)