ggurov / hx711

raspberry pi hx711 weight scale interface
56 stars 33 forks source link

Various fixes and enhancements #13

Closed hn closed 8 years ago

hn commented 8 years ago

The binary representation of the measured values is wrong (right shifted 1 bit):

root@bare-rasberripi:~/hx711# ./hx711
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 1 1 1 1 0 0 n:       7672     -

This patch formats it like this (7672 = 1110111111000):

root@bare-rasberripi:~/hx711# ./hx711
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 1 1 1 1 0 0 0 n:       7672     -

Please see my fork (https://github.com/hn/hx711) for more enhancements and features.