ubidots / ubidots-arduino-ethernet

Ubidots-Ethernet is an Arduino library for interacting with Ubidots through its API with the Arduino ethernet shield.
6 stars 8 forks source link

Change in line 230: uint8_t timeout for -> int timeout, this cause … #9

Closed Hernan1286 closed 5 years ago

Hernan1286 commented 5 years ago

…a problem in line 316.

With uint8_t timeout i had a problem in the sentence IF(TIMEOUT>=5000) in the line 316, because the variable never reach 5000, only reach 255.

I changed uint8_t timeout for -> int timeout.