Initial Commit
This commit is contained in:
commit
933eee69e4
216 changed files with 20588 additions and 0 deletions
16
SCRIPTS/RGBLED/green.lua
Executable file
16
SCRIPTS/RGBLED/green.lua
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
local function init()
|
||||
end
|
||||
|
||||
local function run()
|
||||
for i=0, LED_STRIP_LENGTH - 1, 1
|
||||
do
|
||||
setRGBLedColor(i, 0, 255, 0)
|
||||
end
|
||||
applyRGBLedColors()
|
||||
end
|
||||
|
||||
local function background()
|
||||
-- Called periodically while the Special Function switch is off
|
||||
end
|
||||
|
||||
return { run=run, background=background, init=init }
|
||||
Loading…
Add table
Add a link
Reference in a new issue