У меня проблемы с передачей строки из моего uno в ESP8266, а затем в базу данных. Вместо того, чтобы отображать «Низкий» и направленный в программе uno, он отображает каждый символ низкого уровня на столе на моей веб-странице, а не весь мир. (см. прилагаемое изображение).
Код для Arduino Uno:
// send as
String test = "Low";
void setup()
{
Serial.begin(115200);
// wait for the serial port to connect. Required for Leonardo/Micro native USB port only
while (!Serial) { ; }
}
void loop()
{
Serial.print(test);
}
Код для встроенного ESP8266:
#ifdef ESP32
#include <WiFi.h>
#include <HTTPClient.h>
#else
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <WiFiClient.h>
#endif
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>
char c []= "";
// Replace with your network credentials
const char* ssid = "*****";
const char* password = "****";
// REPLACE with your Domain name and URL path or IP address with path
const char* serverName = "******";
// Keep this API Key value to be compatible with the PHP code provided in the project page.
// If you change the apiKeyValue value, the PHP file /post-esp-data.php also needs to have the same key
String apiKeyValue = "****";
String humidityValue;
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
Serial.println("Connecting");
while(WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("Connected to WiFi network with IP Address: ");
Serial.println(WiFi.localIP());
}
void loop() {
if(Serial.available())
{
char c = Serial.read();
delay(100);
humidityValue = c;
Serial.print(humidityValue);
}
//Check WiFi connection status
if(WiFi.status()== WL_CONNECTED){
HTTPClient http;
http.begin(serverName);
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
String httpRequestData = "api_key=" + apiKeyValue + "&humidity=" + humidityValue + "";
int httpResponseCode = http.POST(httpRequestData);
delay(1000);
http.end();
}
delay(1000);
}