-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
Labels
Description
Basic Infos
Hardware
Hardware: ESP-12E
Core Version: 2.1.0
Description
Problem description
Settings in IDE
Module: Generic ESP8266 Module
Flash Size: 4MB
CPU Frequency: 80Mhz
Flash Mode: DIO
Flash Frequency: 80Mhz
Upload Using: SERIAL
Reset Method: ck
Sketch
#include <Arduino.h>
void setup() {
Serial.begin(115200);
Serial.setDebugOutput(true);
WiFi.mode(WIFI_STA);
WiFi.disconnect();
DEBUG_WM(F("WiFi mode STA"));
if (connectWifi("", "") == WL_CONNECTED) {DEBUG_WM(F("connect wifi with no saved "));}
else
{
DEBUG_WM(F("connect wifi with config value "));
if (connectWifi(ssid.c_str(), password.c_str()) == WL_CONNECTED) {}
}
Serial.print(F("IP Address:"));
Serial.println(WiFi.localIP());
Serial.println("");
Serial.print("Connected to ");
Serial.println(ssid);
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
}
HX711_Init();
}
void loop() {
}
Debug Messages
ets Jan 8 2013,rst cause:4, boot mode:(3,6)
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.