4
0
Fork 0
mirror of https://github.com/Robertofon/bienenchaos.git synced 2024-06-06 22:06:23 +02:00

Update weight-datageneration.py

+to_grafana
This commit is contained in:
kolossos 2020-06-18 20:20:01 +00:00 committed by GitHub
parent 698167cfb3
commit 40ff0e56cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,8 +197,9 @@ def tim_nice_output(digits, volts):
+ "\n\033[J\0338" # Restore cursor position etc.
)
total_1=res
write_csv(res)
#write_csv(res)
to_grafana(csv)
def write_csv(res):
with open('data.csv', 'a') as csv_file:
csv_writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
@ -224,6 +225,13 @@ def write_csv(res):
time.sleep(.001)
master.update()
def to_grafana(res):
try:
os.system("curl -i -XPOST '172.23.92.63:8086/write?db=mydb&u=admin&p=PASSWORD' --data-binary 'weight,location=bees01 value="str(res))+"'")
except:
print("no access to grafana?")
pass
x_value=0
do_measurement()