renumbered neopixel to make more sense in decadic

This commit is contained in:
2018-05-08 14:41:49 +02:00
parent 6bfa40ce9f
commit b40825a75f
3 changed files with 13 additions and 9 deletions
+5 -5
View File
@@ -11,11 +11,11 @@
enum PinCmd_ {
CMD_CLEAR = 0,
CMD_LOAD = 1,
CMD_LOAD_ZRGB = 0x08, // 0,0 - trail zero, bgr
CMD_LOAD_ZBGR = 0x09, // 0,1
CMD_LOAD_RGBZ = 0x0A, // 1,0
CMD_LOAD_BGRZ = 0x0B, // 1,1
CMD_GET_LEN = 0x10,
CMD_LOAD_ZRGB = 4, // 0,0 - trail zero, bgr
CMD_LOAD_ZBGR = 5, // 0,1
CMD_LOAD_RGBZ = 6, // 1,0
CMD_LOAD_BGRZ = 7, // 1,1
CMD_GET_LEN = 10,
};
/** Handle a request message */