Merge pull request #1327 from litbrb/main

Create oldleds.js
This commit is contained in:
slweeb 2025-12-27 23:06:27 -05:00 committed by GitHub
commit 3277d1a9b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 0 deletions

20
mods/oldleds.js Normal file
View File

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