I'm a new bie in program Arduino and interested in ESP8266. I'm trying to use ESP8266 control Arduino Yun using REST API.
Like you know, we using web browser as
http://<Arduino_Yún_Address>/arduino /<status>/<pin>/value> (optional)>
Example: http://<Arduino_Yún_Address>/arduino/digital/13/1
you bring pin 13 to high, by closing the relay and giving light to the LED,
while with: http://<Arduino_Yún_Address>/arduino/digital/13/0
the relay is opened and the LED is turned off
and I want to use ESP8266 to send command like using web browser and it didn't work.
After connect to Wifi access point and Server of Yun done, I've tried to send command like
GET /http://<Arduino_Yún_Address>/arduino/digital/13/1
Please give me some idea or move advices about this situation. Thanks for reading my topic.