Did current sweeps for some dists, might do more

This commit is contained in:
2025-12-05 10:56:40 -06:00
parent 942827b36f
commit 51f1fb3dc9
5 changed files with 89 additions and 6 deletions

View File

@@ -11,8 +11,8 @@
HX711 myScale;
// adjust pins if needed.
uint8_t dataPin = 2;
uint8_t clockPin = 3;
uint8_t dataPin = 4;
uint8_t clockPin = 5;
void setup()
@@ -25,8 +25,8 @@ void setup()
Serial.println();
myScale.begin(dataPin, clockPin);
myScale.set_offset(OFFSET);
myScale.set_scale(SCALE);
myScale.set_offset(OFFSET1);
myScale.set_scale(SCALE1);
}
void loop()