bienenchaos/weight_NAU7802_Tim.py

11 lines
287 B
Python
Raw Normal View History

2020-07-12 22:04:27 +02:00
import nau7802py, time
myScale = nau7802py.NAU7802()
if myScale.begin():
while True:
currentReading = myScale.getReading()
currentWeight = myScale.getWeight()
print('Reading: ' + str(currentReading)+" "+ str(round(currentWeight, 4)))
time.sleep(1)