Subversion Repositories HomeAutomation

Rev

Rev 971 | Rev 999 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1.  
  2. /* Load important scripts */
  3. loadScript("System/Interval.js");
  4. loadScript("System/Socket.js");
  5. loadScript("System/HTTP.js");
  6. loadScript("System/Service.js");
  7. loadScript("System/ServiceManager.js");
  8. loadScript("System/CanMessage.js");
  9. loadScript("System/CanManager.js");
  10. loadScript("System/CanService.js");
  11.  
  12. loadScript("Other/OnlinePhonebook.js");
  13.  
  14. /* This function is called when the virtual machine is up and running.
  15.    Put things that needs to start here */
  16. function startup()
  17. {
  18.     if (autostart)
  19.     {
  20.         autostart();
  21.     }
  22.  
  23.     startOfflineCheck();
  24. }
  25.