#include <LiquidCrystal_I2C.h>
#include <HX711.h>
#include <TM1637.h>
const int CLK = 25;
const int DIO = 26;
HX711 scale;
LiquidCrystal_I2C lcd = LiquidCrystal_I2C(0x27, 16, 2);
TM1637 tm(CLK, DIO);
float weight = 0;
int LEDBARPINS[] = {15,2,0,4,16,17,5,18,19,23};
const int ledCount = 10;
void setup() {
Serial.begin(115200);
scale.begin(12, 14);
scale.set_scale(420.f);
scale.tare();
tm.init();
tm.set(BRIGHT_TYPICAL);
lcd.init();
lcd.backlight();
lcd.home();
lcd.print("Grams left: ");
lcd.setCursor(0, 1);
lcd.print("% used: ");
for (int thisLed = 0; thisLed < ledCount; thisLed++) {
pinMode(LEDBARPINS[thisLed], OUTPUT);
}
}
void loop() {
delay(1000); // this speeds up the simulation
weight = scale.get_units(10);
lcd.setCursor(12, 0);
lcd.print(weight * 1000); //IRL will add some math to subtract the spool weight and such
lcd.setCursor(8, 1);
lcd.print((1 - weight) * 100); //Same math
String fullValue = String(weight, 3);
Serial.println(fullValue);
tm.display(0, int(fullValue[0] - '0'));
tm.display(1, int(fullValue[2] - '0'));
tm.display(2, int(fullValue[3] - '0'));
tm.display(3, int(fullValue[4] - '0'));
int ledLevel = map((weight*100), 0, 100, 0, ledCount);
for (int thisLed = 0; thisLed < ledCount; thisLed++) {
if (thisLed < ledLevel) {
digitalWrite(LEDBARPINS[thisLed], HIGH);
}
else {
digitalWrite(LEDBARPINS[thisLed], LOW);
}
}
}
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
cell1:VCC
cell1:DT
cell1:SCK
cell1:GND
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL
bargraph1:A1
bargraph1:A2
bargraph1:A3
bargraph1:A4
bargraph1:A5
bargraph1:A6
bargraph1:A7
bargraph1:A8
bargraph1:A9
bargraph1:A10
bargraph1:C1
bargraph1:C2
bargraph1:C3
bargraph1:C4
bargraph1:C5
bargraph1:C6
bargraph1:C7
bargraph1:C8
bargraph1:C9
bargraph1:C10
sw1:1
sw1:2
sw1:3
r1:1
r1:2
r2:1
r2:2
r3:1
r3:2
r4:1
r4:2
r5:1
r5:2
r6:1
r6:2
r7:1
r7:2
r8:1
r8:2
r9:1
r9:2
r10:1
r10:2
sevseg1:CLK
sevseg1:DIO
sevseg1:VCC
sevseg1:GND