Hi Everyone,
I been trying to do a project of IOT so I want to send data to my channel in Thingspeak but I don't know how. There's a general code to do it?
I'm using ESP8266-01 and AT commands.
Could you help me, please?
Thanks!!!
AiR
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, pass);
while (WiFi.status() != WL_CONNECTED)
{
delay(1000);
Serial.println(".");
}
This part doesn't conect my ESP to my WiFi network. Help me please.