-
Notifications
You must be signed in to change notification settings - Fork 0
/
bascula.ino
29 lines (24 loc) · 1011 Bytes
/
bascula.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Por Roberto A. Zavala
// Breve : https://es.overleaf.com/read/tdszxygbwjrc
// Libro : https://www.amazon.com.mx/dp/B074TTGLL2
// 🙏🏼 : DNv7acPAeVBhTXbKv26itJecPG1SPy2o4F
#include <HX711.h>
HX711 hx711(D2, D3, 1); // (DT , SCK, gain= 1|3) de HX711
float p; // masa en gramos
float b = 0; // valor inicial en y = m x +b
float m = 2215.05; // pendiente en y = m x + b
int n = 10; // mediciones a promediar
void setup()
{
Serial.begin(9600);
Serial.println("Iniciando báscula m(g) :) ");
for (int i=0; i<7; i++) { hx711.read(); } // ignorar las primeras mediciones
for (int i=0; i<10; i++) { b = b + hx711.read();} // se obtiene b
b = b/10;
}
void loop()
{
p = 0;
for (int i=0; i<n; i++) { p = p + ( hx711.read() - b) / m; }
Serial.println( p/n , 2 );
}