You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just successfully compiled both examples on the Arduino IDE 1.0.5 and on codebender.cc for Arduino Uno. Which board did you use? Keep in mind that the WebSerial library has this Websocket library (https://github.com/ejeklint/ArduinoWebsocketServer) as a dependency. Maybe that was your issue. I should actually update the Readme to include that.
Thank's for help, now it compiles without errors.
I upload the schetch, but I don't know how to use the examples. I enter into the browser the arduino's IP but nothing happend. I use both - standard bootloader for arduino ethernet and ariadne bootloader.
With Ariadne arduino answer at ping, with stadard bootloader it doesn't (I used the same mac and ip at ariadne and schetch)
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
The text was updated successfully, but these errors were encountered: