我是新来的,如果在事先对不起之前被询问, 我找不到相关的问题。
我编辑了一个代码,以获取Thingspeak频道的数据,以便在arduino uno的第8频道上使用led或继电器。根据数据1或0,LED将亮起或熄灭。我正在使用esp8266。
espSerial.find(“ + IPD,1:0”)块无法正常工作。
#include <SoftwareSerial.h>
SoftwareSerial espSerial(2, 3);
#define DEBUG true
String mySSID = "ssid";
String myPWD = "pass";
String myAPI = "CV4YEARDB91GTOXM"; // API Key
String myHOST = "api.thingspeak.com";
String myPORT = "80";
String myFIELD = "field1";
void setup()
{
pinMode(8,OUTPUT);
Serial.begin(9600);
espSerial.begin(115200);
espData("AT+RST", 1000, DEBUG);
espData("AT+CWMODE=1", 1000, DEBUG);
espData("AT+CWJAP=\""+ mySSID +"\",\""+ myPWD +"\"", 1000, DEBUG);
delay(1000); }
void loop()
{
String sendData = "GET /channels/716457/fields/1/last?key=CV4YEARDB91GTOXM";
espData("AT+CIPMUX=1", 1000, DEBUG);
espData("AT+CIPSTART=0,\"TCP\",\""+ myHOST +"\","+ myPORT, 1000, DEBUG);
espData("AT+CIPSEND=0," +String(sendData.length()+4),1000,DEBUG);
espSerial.find(">");
espSerial.println(sendData);
espData("AT+CIPCLOSE=0",1000,DEBUG);
delay(10000);
}
String espData(String command, const int timeout, boolean debug)
{
Serial.print(command);
Serial.println(" ");
String response = "";
espSerial.println(command);
long int time = millis();
while ( (time + timeout) > millis())
{
while (espSerial.available())
{
if (espSerial.find("+IPD,1:0")) {
digitalWrite(8,LOW); }
if (espSerial.find("+IPD,1:1")) {
digitalWrite(8,HIGH); }
}
}
if (debug)
{
Serial.print(response);
}
return response;
}
答案 0 :(得分:0)
这是我打算的解决方案,该解决方案是使用+ IPD答案从Thingspeak频道获取数据:
String espData(String command, const int timeout, boolean debug)
{
Serial.print(command);
Serial.println(" ");
String response = "";
espSerial.println(command);
long int time = millis();
while ( (time + timeout) > millis())
{
if (espSerial.available()>0)
{
if (espSerial.find("+IPD,0,1:")); {
while (espSerial.available()>0) {
String gelen = "";
char serialdenokunan;
serialdenokunan = espSerial.read();
gelen += serialdenokunan;
Serial.println(gelen);
if (gelen.indexOf("0")>=0) {
digitalWrite(8,LOW); }
if (gelen.indexOf("1")>=0) {
digitalWrite(8,HIGH); }
}}}
}
if (debug)
{
Serial.print(response);
}
return response;
}
如果单个连接的AT + CIPMUX = 0,则IPD答案将是+ IPD,0:data而不是+ IPD,0,connectionnumber:data。比(espSerial.find(“ + IPD,0:”))在这种情况下是否有效。
感谢所有通过消息和帖子回答的人。
答案 1 :(得分:0)
有更简单的方法可以做到这一点。 ThingSpeak已在GitHub上创建了库,该库将处理向ThingSpeak通道写入数据和从ThingSpeak通道读取数据的过程。您可以尝试一个包含在库中的示例。