Hi,
I tried to compile one of webSerial examples and I found the following errors:
byte ip[] = { 192, 168, 1 , 100 };
invalid conversion from byte to int - I fixed it:
IPAddress ip(192, 168, 1, 100);
error: 'size_t' does not name a type
I think uint8_t must be use
keywords.txt file is missing, so compiler returns
error: 'class WebSerial' has no member named 'print'
I used Arduino 1.0.5 compiler
can you fix the library errors, I thing it is a verry usefull library for remote debuging
Hi,
I tried to compile one of webSerial examples and I found the following errors:
byte ip[] = { 192, 168, 1 , 100 };
invalid conversion from byte to int - I fixed it:
IPAddress ip(192, 168, 1, 100);
error: 'size_t' does not name a type
I think uint8_t must be use
keywords.txt file is missing, so compiler returns
error: 'class WebSerial' has no member named 'print'
I used Arduino 1.0.5 compiler
can you fix the library errors, I thing it is a verry usefull library for remote debuging