16 lines
321 B
Lua
Executable file
16 lines
321 B
Lua
Executable file
local function init()
|
|
end
|
|
|
|
local function run()
|
|
for i=0, LED_STRIP_LENGTH - 1, 1
|
|
do
|
|
setRGBLedColor(i, 50, 0, 0)
|
|
end
|
|
applyRGBLedColors()
|
|
end
|
|
|
|
local function background()
|
|
-- Called periodically while the Special Function switch is off
|
|
end
|
|
|
|
return { run=run, background=background, init=init }
|