1
1
// OOZE MASTER 3000: NeoPixel simulated liquid physics. Up to 7 NeoPixel
2
2
// strands dribble light, while an 8th strand "catches the drips."
3
- // Designed for the Adafruit Feather M0 (NOT M4) with NeoPXL8 FeatherWing.
4
- // This can be adapted for other M0 or M4 boards but you will need to do your
5
- // own "pin sudoku" and level shifting (e.g. NeoPXL8 Friend breakout or similar).
3
+ // Designed for the Adafruit Feather M0 or M4 with matching version of
4
+ // NeoPXL8 FeatherWing. This can be adapted for other M0 or M4 boards but
5
+ // you will need to do your own "pin sudoku" and level shifting
6
+ // (e.g. NeoPXL8 Friend breakout or similar).
6
7
// See here: https://learn.adafruit.com/adafruit-neopxl8-featherwing-and-library
7
8
// Requires Adafruit_NeoPixel, Adafruit_NeoPXL8 and Adafruit_ZeroDMA libraries.
8
9
@@ -18,9 +19,13 @@ uint8_t dripColor[] = { 0, 255, 0 }; // Bright green ectoplasm
18
19
// for a more theatric effect / to slow down the drips like they've still got a
19
20
// syrupy "drool string" attached (try much lower values like 2.0 to 3.0).
20
21
21
- // NeoPXL8 pin numbers (these are default connections on NeoPXL8 FeatherWing)
22
+ // NeoPXL8 pin numbers (these are default connections on NeoPXL8 M0 FeatherWing)
22
23
int8_t pins[8 ] = { PIN_SERIAL1_RX, PIN_SERIAL1_TX, MISO, 13 , 5 , SDA, A4, A3 };
23
24
25
+ // If using an M4 Feather & NeoPXL8 FeatherWing, use these values instead:
26
+ // int8_t pins[8] = { 13, 12, 11, 10, SCK, 5, 9, 6 };
27
+
28
+
24
29
typedef enum {
25
30
MODE_IDLE,
26
31
MODE_OOZING,
0 commit comments