Fix LED names

This commit is contained in:
slweeb 2025-12-27 23:06:16 -05:00 committed by GitHub
parent f5646741c5
commit 980f043ddb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -1,18 +1,18 @@
elements.rled = { elements.led_r = {
...elements.led, ...elements.led,
customColor: false, customColor: false,
color: "rgb(255,0,0)", color: "rgb(255,0,0)",
colorObject: {r:255, g:0, b:0} colorObject: {r:255, g:0, b:0}
}; };
elements.gled = { elements.led_g = {
...elements.led, ...elements.led,
customColor: false, customColor: false,
color: "rgb(0,255,0)", color: "rgb(0,255,0)",
colorObject: {r:0, g:255, b:0} colorObject: {r:0, g:255, b:0}
}; };
elements.bled = { elements.led_b = {
...elements.led, ...elements.led,
customColor: false, customColor: false,
color: "rgb(0,0,255)", color: "rgb(0,0,255)",