Anders Eriksson

Results 4 comments of Anders Eriksson

something like this then? ``` unsigned long timeoutStartResponse = millis(); while ( (iState == eStatusCodeRead) && (iStatusCode < 200) && ( (millis() - timeoutStartResponse) < iHttpResponseTimeout )); ``` Me too...

When I move the declaration to the place as the other timeout I get compile error: unsigned long timeoutStart = millis(); unsigned long timeoutStartResponse = millis(); /Users/tvillingett/Documents/Arduino/libraries/HttpClient/HttpClient.cpp:384: error: 'timeoutStartResponse' was...

I had some coffee now, and placed it right. It works with both compile and downloading to my arduino. In a week I will know if it is better than...

Sorry to say that my test did fail. It failed after about 8h. We need to have a way to do some kind of debugging, with logging. There is a...