nodeMCU client is working
[mTask.git] / client / client.c
index 0218fb7..6502fb7 100644 (file)
@@ -63,6 +63,8 @@ void read_message(void)
                default:
                        debug("Unknown message: %X", c);
                }
+       } else {
+//             debug("No input");
        }
 }
 
@@ -73,7 +75,9 @@ void loop(void)
        if(getmillis()-loopmillis < LOOPDELAY){
                return;
        }
+       loopmillis = getmillis();
 #endif
+       debug("Loop");
 
        int ct;
        long cyclestart;