init.lua 259 B

1234567891011121314151617
  1. DEBUG = true
  2. function debug_message(message)
  3. if DEBUG
  4. print(message)
  5. end
  6. end
  7. if DEBUG
  8. print("Waiting one second on timer 0")
  9. tmr.alarm(0, 1000, tmr.ALARM_SINGLE,
  10. function()
  11. dofile("main.lua")
  12. end)
  13. else
  14. dofile("main.lua")
  15. end