mt12/SCRIPTS/RGBLED/green.lua

17 lines
322 B
Lua
Raw Normal View History

2025-06-26 07:54:22 -04:00
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 }