Skip to content
Snippets Groups Projects
Commit 381b57de authored by adam-abed-abud's avatar adam-abed-abud
Browse files

Fix for state/version and send commands

parent 8ddf8e2f
No related merge requests found
......@@ -51,11 +51,11 @@ def send_cmd():
"""
web_form = request.form
if web_form.get('start') == "START":
print("-----------------------------")
print(hevclient.send_cmd("CMD_START"))
elif web_form.get('stop') == "STOP":
print("==============================")
print(hevclient.send_cmd("CMD_STOP"))
elif web_form.get('reset') == "RESET":
print("******************************")
print(hevclient.send_cmd("CMD_RESET"))
return render_template('index.html', result=live_data())
......
......@@ -79,7 +79,7 @@ def monitoring(source_address):
# Instantiating the client
hevclient = HEVClient()
#print(hevclient.send_cmd("CMD_START"))
print(hevclient.send_cmd("CMD_START"))
epoch = datetime(1970, 1, 1)
......@@ -107,9 +107,9 @@ def monitoring(source_address):
'time' : timestamp,
'alarms' : data_alarms,
'temperature': 1,
'version': 1,
'version': data_receiver["version"],
'pressure': 1,
'fsm_state': data_receiver["version"],
'fsm_state': data_receiver["fsm_state"],
'pressure_air_supply': data_receiver["pressure_air_supply"],
'pressure_air_regulated': data_receiver["pressure_air_regulated"],
'pressure_o2_supply': data_receiver["pressure_o2_supply"],
......
......@@ -104,6 +104,9 @@ class svpi():
# peek at the leftmost item, don't pop until receipt confirmed
callback(self._payloadrecv[0])
def writePayload(self, payload):
logging.info(payload)
def bind_to(self, callback):
self._observers.append(callback)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment