Create oldleds.js
This commit is contained in:
parent
71fd50a68e
commit
f5646741c5
|
|
@ -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}
|
||||
};
|
||||
Loading…
Reference in New Issue