Create oldleds.js

This commit is contained in:
litbrb 2025-12-26 18:19:39 +05:30 committed by GitHub
parent 71fd50a68e
commit f5646741c5
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.rled = {
...elements.led,
customColor: false,
color: "rgb(255,0,0)",
colorObject: {r:255, g:0, b:0}
};
elements.gled = {
...elements.led,
customColor: false,
color: "rgb(0,255,0)",
colorObject: {r:0, g:255, b:0}
};
elements.bled = {
...elements.led,
customColor: false,
color: "rgb(0,0,255)",
colorObject: {r:0, g:0, b:255}
};