Search found 2 matches

by WingNut
Sat Sep 08, 2018 2:17 am
Forum: ESP32 Arduino
Topic: Compilation error - Yield function
Replies: 2
Views: 5308

Re: Compilation error - Yield function

I was thinking about those same statements while at work. Removed them, and it compiled just fine.

Thanks!
by WingNut
Thu Sep 06, 2018 2:21 am
Forum: ESP32 Arduino
Topic: Compilation error - Yield function
Replies: 2
Views: 5308

Compilation error - Yield function

Hi Everyone, I'm playing with/learning load cells. Wrote some come code that works on an Arduino Uno, but not the ESP32. #include "HX711.h" #define DOUT 3 #define CLK 2 float seed = -385.95; HX711 scale(DOUT, CLK); void setup() { Serial.begin(9600); scale.set_scale(seed); scale.tare(); } void loop()...