Subversion Repositories HomeAutomation

Rev

Rev 1402 | 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/CanNMTMessage.js");
  10. loadScript("System/CanManager.js");
  11. loadScript("System/CanService.js");
  12. loadScript("System/CanNode.js");
  13. loadScript("System/Console.js");
  14. loadScript("System/DataStore.js");
  15. loadScript("System/TextTable.js");
  16. loadScript("System/IntelHex.js");
  17. loadScript("System/Base64.js");
  18.  
  19. loadScript("Other/OnlinePhonebook.js");
  20. loadScript("Other/Spotify.js");
  21. loadScript("Other/ExchangeCalendar.js");
  22. loadScript("Other/EggdropIRCpost.js");
  23.  
  24. loadScript("System/TempSensors.js");
  25. loadScript("System/Dimmers.js");
  26.  
  27. /* This function is called when the virtual machine is up and running.
  28.    Put things that needs to start here */
  29. function startup()
  30. {
  31.     if (typeof autostart != "undefined")
  32.     {
  33.         autostart();
  34.     }
  35.  
  36.     CanOfflineTimer.start();
  37. }
  38.