I was thinking about those same statements while at work. Removed them, and it compiled just fine.
Thanks!
Search found 2 matches
- Sat Sep 08, 2018 2:17 am
- Forum: ESP32 Arduino
- Topic: Compilation error - Yield function
- Replies: 2
- Views: 5759
- Thu Sep 06, 2018 2:21 am
- Forum: ESP32 Arduino
- Topic: Compilation error - Yield function
- Replies: 2
- Views: 5759
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 ...
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 ...