Search found 11 matches

by wally2511
Fri Apr 09, 2021 3:16 pm
Forum: Freematics Products
Topic: Bug in teleclient.cpp
Replies: 1
Views: 3332

Bug in teleclient.cpp

Hi, I found an issue when trying to used WIFI in place of 4g. teleclient.cpp Serial.println(response); if (net.code() == 200) { // successful lastSyncTime = millis(); rxBytes += bytes; } return true; I had to change it to something like this for it to compile: Serial.println(response); if (response)...