Files
2019-12-21 15:54:03 +01:00

12 lines
340 B
Lua

-- Scripts à charger après le boot pour démarrer le core system
print("\n boot.lua zf191221.1509 \n")
function boot()
gpio.trig(zswitch, "none") hvbouton=nil zswitch=nil reset_reason=nil
f= "telnet_srv2.lua" if file.exists(f) then dofile(f) end
f= "wifi_init.lua" if file.exists(f) then dofile(f) end
end
boot()