У меня есть эскиз ESP8266, который позволит пользователям вводить свои ip-адрес и пароль, а также свои api thingSpeak write при включении устройства (ESP8266 подключен к Arduino UNO v3).Я использую прилагаемый код, который я использую в Arduino IDE для отправки на устройство.Я использую Flash Size: 512K (128K SPIFFS) при загрузке в ESP8266 из-за SPIFFS в коде, и FS монтируется, а пользовательские параметры предположительно сохраняются в файле конфигурации.В любом случае принтер с последовательным интерфейсом сообщает, что это так.
После ввода и сохранения IP-адреса и пароля вместе с api.thingspeak.com и записи api ESP8266 перезапускается, подключается и начинает загружать показания двух датчиков в ThingSpeak.Это замечательно!!Однако я хочу, чтобы мой проект был самодостаточным (батареи и солнечное зарядное устройство), поэтому я стараюсь максимально сократить потребление энергии.Код на Arduino включает ESP8266 каждый час.когда бассейн медленно опускается из-за испарения, и каждые две минуты, когда бассейн заполняется.
Проблема в том, что, когда я отключаю питание ESP8266 и перезагружаю, ничего не происходит.Синий индикатор на ESP8266 мигает, но он не подключается к Wi-Fi и thingSpeak и загружает показания датчика.НИЧЕГО НЕ ПРОИЗОШЛО.Поэтому мой вопрос: как подключиться к Wi-Fi внутри цикла (void) и получить информацию, хранящуюся в SPIFFS, для подключения к ThingSpeak и загрузки в мой API записи.Я не понимаю, зачем хранить информацию в SPIFFS, если вы не можете ее получить.Кроме того, я не совсем уверен, как использовать контакт сброса WiFi 13.
Вот мой код.
#include <FS.h>
#include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
//needed for library
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager
#include <ArduinoJson.h>
//NEW STUFF START
char apiKey[20]="";
WiFiClient client;
char defaultHost[100] = "api.thingspeak.com"; //Thing Speak IP address (sometime the web address causes issues with ESP's :/
long itt = 500;
long itt2 = 500;
const byte wifiResetPin = 13;
int interruptPinDebounce = 0;
long debouncing_time = 1000;
volatile unsigned long wifiResetLastMillis = 0;
bool shouldSaveConfig = false;
void saveConfigCallback () {
Serial.println("Should save config");
shouldSaveConfig = true;}
void handleWifiReset(){
if(millis()<wifiResetLastMillis){
wifiResetLastMillis = millis();
}
if((millis() - wifiResetLastMillis)>= debouncing_time){
Serial.println("Clearing WiFi data resetting");
WiFiManager wifiManager;
wifiManager.resetSettings();
SPIFFS.format();
ESP.reset();
delay(1000);
}
wifiResetLastMillis = millis();
}
void setup() {
WiFiManager wifiManager;
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(wifiResetPin, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(wifiResetPin), handleWifiReset,FALLING);
//NEW STUFF START
//clean FS, for testing
//SPIFFS.format();
//read configuration from FS json
Serial.println("mounting FS...");
if (SPIFFS.begin()) {
Serial.println("mounted file system");
if (SPIFFS.exists("/config.json")) {
//file exists, reading and loading
Serial.println("reading config file");
File configFile = SPIFFS.open("/config.json", "r");
if (configFile) {
Serial.println("opened config file");
size_t size = configFile.size();
// Allocate a buffer to store contents of the file.
std::unique_ptr<char[]> buf(new char[size]);
configFile.readBytes(buf.get(), size);
DynamicJsonBuffer jsonBuffer;
JsonObject& json = jsonBuffer.parseObject(buf.get());
json.printTo(Serial);
if (json.success()) {
Serial.println("\nparsed json");
strcpy(defaultHost, json["defaultHost"]);
strcpy(apiKey, json["apiKey"]);
} else {
Serial.println("failed to load json config");
}
}
}
} else {
Serial.println("failed to mount FS");
}
WiFiManagerParameter customHostServer("defaultHost", "Host Server", defaultHost, 100);
WiFiManagerParameter customAPIKey("apiKey", "ThingSpeakWriteAPI", apiKey, 20);
//END NEW STUFF
//WiFiManager
//Local intialization. Once its business is done, there is no need to keep it around
//WiFiManager wifiManager;
//NEW STUFF START
wifiManager.setSaveConfigCallback(saveConfigCallback);
wifiManager.addParameter(&customHostServer);
wifiManager.addParameter(&customAPIKey);
//END NEW STUFF
//reset saved settings
//wifiManager.resetSettings();
//set custom ip for portal
//wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));
//fetches ssid and pass from eeprom and tries to connect
//if it does not connect it starts an access point with the specified name
//here "AutoConnectAP"
//and goes into a blocking loop awaiting configuration
wifiManager.autoConnect("AutoConnectAP");
Serial.println("Connected");
//NEW STUFF START
strcpy(defaultHost, customHostServer.getValue());
strcpy(apiKey, customAPIKey.getValue());
if (shouldSaveConfig) {
Serial.println("saving config");
DynamicJsonBuffer jsonBuffer;
JsonObject& json = jsonBuffer.createObject();
json["defaultHost"] = defaultHost;
json["apiKey"] = apiKey;
File configFile = SPIFFS.open("/config.json", "w");
if (!configFile) {
Serial.println("failed to open config file for writing");
}
json.printTo(Serial);
json.printTo(configFile);
configFile.close();
//end save
}
Serial.println("local ip");
Serial.println(WiFi.localIP());
//END NEW STUFF
//or use this for auto generated name ESP + ChipID
//wifiManager.autoConnect();
pinMode(2,INPUT);
pinMode(1,INPUT);
Serial.println("WriteApi");
Serial.println(apiKey);
//if you get here you have connected to the WiFi
Serial.println("connected...yeey :)");
//save the custom parameters to FS
strcpy(defaultHost,customHostServer.getValue());
strcpy(apiKey,customAPIKey.getValue());
}
//callback notifying us of the need to save config
void loop() {
delay(5000);
//THIS IS NEW CODE
WiFiManager wifiManager;
wifiManager.autoConnect("AutoConnectAP");
Serial.println("Connected");
char defaultHost[100] = "api.thingspeak.com";
pinMode(2,INPUT);
pinMode(1,INPUT);
const int waterInPin = 2; // Analog input pin that the potentiometer is attached to
const int BatteryInPin = 1; // Analog input pin that the potentiometer is attached to
int waterSensorInValue;//reading our water lever sensor
int waterSensorOutValue;//conversion of water sensor value
int BatterySensorInValue;//reading our water lever sensor
int BatterySensorOutValue;//conversion of water sensor value
// put your main code here, to run repeatedly:
waterSensorInValue = analogRead(waterInPin);
BatterySensorInValue = analogRead(BatteryInPin);
waterSensorOutValue = map(waterSensorInValue,0,1024,0,225);
BatterySensorOutValue = map(BatterySensorInValue,0,1024,0,225);
Serial.println("WaterOutValue = ");
Serial.println(waterSensorOutValue );
Serial.println("WaterInValue = ");
Serial.println(waterSensorInValue );
Serial.println("BatteryOutValue = ");
Serial.println(BatterySensorOutValue );
Serial.println("BatteryInValue = ");
Serial.println(BatterySensorInValue);
delay(18000);
itt = waterSensorInValue;
itt2 = BatterySensorInValue;
if (client.connect(defaultHost,80))
{ // "184.106.153.149" or api.thingspeak.com
itt++; //Replace with a sensor reading or something useful
String postStr = apiKey;
postStr +="&field1=";
postStr += String(itt);
postStr +="&field2=";
postStr += String(itt2);
postStr += "\r\n\r\n\r\n";
client.print("POST /update HTTP/1.1\n");
client.print("Host: api.thingspeak.com\n");
client.print("Connection: close\n");
client.print("X-THINGSPEAKAPIKEY: "+String (apiKey)+"\n");
client.print("Content-Type: application/x-www-form-urlencoded\n");
client.print("Content-Length: ");
client.print(postStr.length());
client.print("\n\n\n");
client.print(postStr);
Serial.println("% send to Thingspeak");
}
client.stop();
Serial.println("Waiting…");
delay(55000);
}
ПОМОГИТЕ ПОЖАЛУЙСТА !!
Добавлен новый код вЭскиз в пустом цикле для подключения к Wi-Fi, и теперь он восстанавливает соединение после восстановления питания к ESP8266 Теперь все, что мне нужно сделать, это получить доступ к файлу SPIFFS и получить api thingSpeak write, чтобы я мог загрузить данные датчика.Может кто-нибудь указать мне пример / учебник о том, как получить доступ к SPIFFS или написать пример для меня здесь.Благодарю.Я собираюсь попробовать поставить клиент WiFiClient;в моем коде цикла, чтобы увидеть, что происходит.