How can I control a toy car wheel wirelessly from a web. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How can I control a toy car wheel wirelessly from a web.

Arduino-web interfacing

27th Jan 2019, 8:14 PM
Wattz
Wattz - avatar
2 Answers
+ 5
Would be easier with raspberry since you can run a web server on it. But with arduino, you must have a seperate web server running where you can then retrieve information with HttpClient.
27th Jan 2019, 9:58 PM
Toni Isotalo
Toni Isotalo - avatar
+ 2
Use AJAX so when you press a button it updates a file on the server. The Arduino will use the Ethernet shield to perform a GET request to the page on the server. If the text is equal to something, then do something with the motors and whatnot.
27th Jan 2019, 9:56 PM
Rowsej
Rowsej - avatar