//https://wokwi.com/projects/320861715635896916
//Construído com base no projeto do usuário arcostasi
#include <HX711.h>
#include <TinyDebug.h>
#define DATA_PIN 1
#define CLOCK_PIN 2
HX711 hx711;
int qtd_passageiros_atual;
void setup() {
Debug.begin();
hx711.begin(DATA_PIN, CLOCK_PIN);
hx711.tare();
hx711.set_scale(420.0983);
qtd_passageiros_atual=10;
}
void loop() {
if(hx711.get_units()>=12)
{
if(qtd_passageiros>0)
qtd_passageiros_atual--;
Debug.println(qtd_passageiros_atual);
while(hx711.get_units()>=12)
delay(10);
}
}