+hiveeeyes

This commit is contained in:
kolossos 2021-01-15 19:53:47 +01:00 committed by GitHub
parent 2b5251a28d
commit ca3641641f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -5,6 +5,8 @@ myScale = nau7802py.NAU7802()
grafanaurl="%GRAFANA_URL%"
hiveeyesurl="https://swarm.hiveeyes.org/api/hiveeyes/Kryvle/Zietenaugust/"
if myScale.begin():
while True:
currentReading = myScale.getReading()
@ -18,3 +20,11 @@ if myScale.begin():
print("no access to grafana?")
pass
time.sleep(1)
try:
cmd="curl --header \"Content-Type: application/json\" -XPOST -d '{\"weight\": "+str(currentWeight)+"}' "+hiveeyesurl+"Beute2/data"
print (cmd)
os.system(cmd)
except:
print("no access to hiveeyes.org?")
pass
time.sleep(1)