Files
NodeMCU_Lua/LED_RGB_WS2812/chapeau_led/mega-dojo/michael/boot.lua
T

11 lines
515 B
Lua

-- Scripts charger aprs le boot pour dmarrer son appli
print("\n boot.lua 07.12.18 1634\n")
f= "wifi_ap_stop.lua" if file.exists(f) then dofile(f) end
f= "wifi_cli_conf.lua" if file.exists(f) then dofile(f) end
f= "wifi_cli_start.lua" if file.exists(f) then dofile(f) end
f= "web_ide2.lua" if file.exists(f) then dofile(f) end
f= "az_init_led.lua" if file.exists(f) then dofile(f) end
f= "webleds.lua" if file.exists(f) then dofile(f) end
f= "test.lua" if file.exists(f) then dofile(f) end