Remove serial prints

This commit is contained in:
mrcory
2020-03-07 11:21:30 -05:00
parent b46567738a
commit 1da014151b
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -159,7 +159,6 @@ void loop() {
if (timer(1000,2) == true) {
sendBlynk();
//Serial.println(temp.cur);
}
safetyNet(); //Overload protection
-2
View File
@@ -40,8 +40,6 @@ bool timer(unsigned long _interval,int _id) { //_interval in millis, _id in coun
if (millisCount(1,_id) >= _interval) {
millisCount(0,_id);
return true;
//Serial.print("Timer: "); Serial.print(_id); Serial.print(" ");
//Serial.println("True");
} else {
return false;
}