Skip to content
Snippets Groups Projects
Commit 5c86ecc4 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Bugfixes

parent bc6cf2e1
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,13 @@ try:
controller = pidcontroller.PidController('COM5')
temps = controller.getTemperatures()
controller.disconnect()
measure = [{"measurement":"loop temperature", "fields":{"°C":t}, "tags":{"room":"hpp-p24", "setup": "RBComb"}}]
measure = [{"measurement":"loop temperature", "fields":{"°C":temps[0]}, "tags":{"room":"hpp-p24", "setup": "RBComb"}}]
clientDB.write_points(measure)
measure = [{"measurement":"ool1 temperature", "fields":{"°C":temps[1]}, "tags":{"room":"hpp-p24", "setup": "RBComb"}}]
clientDB.write_points(measure)
measure = [{"measurement":"ool2 temperature", "fields":{"°C":temps[2]}, "tags":{"room":"hpp-p24", "setup": "RBComb"}}]
clientDB.write_points(measure)
measure = [{"measurement":"ool3 temperature", "fields":{"°C":temps[3]}, "tags":{"room":"hpp-p24", "setup": "RBComb"}}]
clientDB.write_points(measure)
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment