You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a NodeMCU 1.0 ESP-12E with Arduino HX711 to connect load cells.
Your library constantly produces WDT reset in combination with the HX711 library. Unfortunately this stops me from using Thinger.io https://github.com/bogde/HX711
The code I used:
SDK:2.2.1(cfd48f3)/Core:2.4.2/lwIP:2.0.3(STABLE-2_0_3_RELEASE/glue:arduino-2.4.1-13-g163bb82)/BearSSL:6d1cefc
#include <ThingerESP8266.h>
#include <HX711.h>
#define USERNAME "xx"
#define DEVICE_ID "xx"
#define DEVICE_CREDENTIAL "xx"
#define SSID "xx"
#define SSID_PASSWORD "xx"
ThingerESP8266 thing(USERNAME, DEVICE_ID, DEVICE_CREDENTIAL);
void setup() {
Serial.begin(74880);
Serial.setTimeout(2000);
// Wait for serial to initialize.
while (!Serial) { }
pinMode(LED_BUILTIN, OUTPUT);
thing.add_wifi(SSID, SSID_PASSWORD);
// digital pin control example (i.e. turning on/off a light, a relay, configuring a parameter, etc)
thing["led"] << digitalPin(LED_BUILTIN);
// resource output example (i.e. reading a sensor value)
thing["millis"] >> outputValue(millis());
// more details at http://docs.thinger.io/arduino/
}
void loop() {
thing.handle();
}
I am using a NodeMCU 1.0 ESP-12E with Arduino HX711 to connect load cells.
Your library constantly produces WDT reset in combination with the HX711 library. Unfortunately this stops me from using Thinger.io
https://github.com/bogde/HX711
The code I used:
SDK:2.2.1(cfd48f3)/Core:2.4.2/lwIP:2.0.3(STABLE-2_0_3_RELEASE/glue:arduino-2.4.1-13-g163bb82)/BearSSL:6d1cefc
The Error:
The text was updated successfully, but these errors were encountered: