diff options
author | Aki <please@ignore.pl> | 2024-01-14 23:38:15 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-01-14 23:54:16 +0100 |
commit | 8e04a77a96eccb86f775f7aa2bbc14ad587c313a (patch) | |
tree | c33a527c36e3f68c6c15d4ab2455cb9d0edc2892 /init.lua | |
parent | 892443f7ba47c8702f8bf3c052f2c7ffefe53f5b (diff) | |
download | nodemcu-wakeup-8e04a77a96eccb86f775f7aa2bbc14ad587c313a.zip nodemcu-wakeup-8e04a77a96eccb86f775f7aa2bbc14ad587c313a.tar.gz nodemcu-wakeup-8e04a77a96eccb86f775f7aa2bbc14ad587c313a.tar.bz2 |
Config is now stored as wakeup module prototype
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ function init () wifi.setmode(wifi.NULLMODE, false) local l, r = pcall(require, "run") if not l then - print("run.lua not found") + print("Could not load run.lua:", r) return end RUN = r |