acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit f6014f27c2c9c393ea2fb6ec29bbd47ea98f59e2
parent 14706c22eef051a8da62e21fe7f28f4656e8ed7f Author: acidvegas <acid.vegas@acid.vegas> Date: Mon, 27 May 2024 02:57:59 -0400 Fixed 39, 40, and 50 color codes (cheers e) Diffstat:
|
1 file changed, 3 insertions(+), 3 deletions(-) |
diff --git a/src/main.ino b/src/main.ino @@ -709,9 +709,9 @@ uint16_t getColorFromCode(int colorCode) { case 35: return 0x020E; case 36: return 0x000E; case 37: return 0x480E; - case 38: return 0xBA08; + case 38: return 0x700E; case 39: return 0x7008; - case 40: return 0xBA08; + case 40: return 0xB000; case 41: return 0xB300; case 42: return 0xB5A0; case 43: return 0x7DA0; @@ -721,7 +721,7 @@ uint16_t getColorFromCode(int colorCode) { case 47: return 0x0316; case 48: return 0x0016; case 49: return 0x7016; - case 50: return 0xBA08; + case 50: return 0xB016; case 51: return 0xB00D; case 52: return 0xF800; case 53: return 0xFC60; |