-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscale.cpp
More file actions
79 lines (63 loc) · 2.58 KB
/
scale.cpp
File metadata and controls
79 lines (63 loc) · 2.58 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "config.h"
#include "scale.h"
#include <HX711.h>
HX711 scale(HX711_DOUT, HX711_PD_SCK); // parameter "gain" is ommited; the default value 128 is used by the library
void init_scale()
{
Serial.println("HX711 Demo");
Serial.println("Before setting up the scale:");
Serial.print("read: \t\t");
unsigned long start = micros();
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.println(micros() - start);
Serial.print("read average(20): \t\t");
start = 0;
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.println(micros() - start);
Serial.print("get value(5): \t\t");
start = micros();
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight (not set yet)
Serial.println(micros() - start);
Serial.print("get units(5): \t\t");
start = micros();
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight (not set) divided
Serial.println(micros() - start);
start = micros();
// by the SCALE parameter (not set yet)
// scale.set_scale(2280.f); // this value is obtained by calibrating the scale with known weights; see the README for details
start = micros();
scale.set_scale(SCALE_DIVIDOR_G); // this value is obtained by calibrating the scale with known weights; see the README for details
Serial.println(micros() - start);
start = micros();
Serial.println("tare:");
scale.tare(); // reset the scale to 0
Serial.println(micros() - start);
Serial.println("After setting up the scale:");
Serial.print("read: \t\t");
start = micros();
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.println(micros() - start);
Serial.print("read average(20): \t\t");
start = micros();
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.println(micros() - start);
Serial.print("get value(5): \t\t");
start = micros();
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight, set with tare()
Serial.println(micros() - start);
Serial.print("get units(5): \t\t");
start = micros();
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight, divided
Serial.println(micros() - start);
start = micros();
// by the SCALE parameter set with set_scale
scale.power_up();
}
float read_scale()
{
return (scale.get_units(1));
}
void tare_scale()
{
scale.tare();
}