Browse Source

dont need to track startTime

Chris Mullins 8 years ago
parent
commit
f385e2bc26
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/main.cpp

+ 0 - 4
src/main.cpp

@@ -22,8 +22,6 @@ MiLightHttpServer *httpServer;
 int numUdpServers = 0;
 MiLightUdpServer** udpServers;
 
-uint64_t startTime;
-
 void initMilightUdpServers() {
   if (udpServers) {
     for (int i = 0; i < numUdpServers; i++) {
@@ -89,8 +87,6 @@ void setup() {
   httpServer = new MiLightHttpServer(settings, milightClient);
   httpServer->onSettingsSaved(applySettings);
   httpServer->begin();
-  
-  startTime = millis();
 }
 
 void loop() {