Hi could anyone give me example of HTML SLIDER VALUE to ARDUINO that the value of the SLIDER will show on the serial of the arduino. example in HTML slider i choose 20 then it goes to arduino catch the value of the 20 then it will serial.print " 20 "
--- this is for the web----
void handleRoot()
{
char temp[1000];
To do this, On the arduino side I would implement a simple HTTP web server, and on the html side I would put i some javascript to catch the onChange event on the slider and submit a POST request to the arduino.