@@ -0,0 +1,17 @@
+DEBUG = true
+
+function debug_message(message)
+ if DEBUG
+ print(message)
+ end
+end
+if DEBUG
+ print("Waiting one second on timer 0")
+ tmr.alarm(0, 1000, tmr.ALARM_SINGLE,
+ function()
+ dofile("main.lua")
+ end)
+else
@@ -0,0 +1 @@
+print("this is main.lua")