mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-12-22 10:24:26 +01:00
doorlockd-slave: implement push notification thread
Signed-off-by: Thomas Schmid <tom@lfence.de>
This commit is contained in:
parent
90c4e9f6cf
commit
08ccfbf670
@ -19,17 +19,20 @@ details.
|
|||||||
|
|
||||||
from pydoorlock.EventClient import EventClient
|
from pydoorlock.EventClient import EventClient
|
||||||
from pydoorlock.Door import DoorState
|
from pydoorlock.Door import DoorState
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
import threading
|
||||||
|
|
||||||
state = DoorState(0)
|
state = DoorState(0)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
def push_handler():
|
||||||
#we need a thread that listens for server sent events
|
ec = EventClient("http://localhost:5000/push")
|
||||||
#we need a thread that does serial port communication
|
|
||||||
#do the networking in the main thread
|
|
||||||
|
|
||||||
ec = EventClient("http://localhost:8080/push")
|
|
||||||
for event in ec.events():
|
for event in ec.events():
|
||||||
data = json.loads(event['data'])
|
data = json.loads(event['data'])
|
||||||
state = DoorState(data['status'])
|
state = DoorState(data['status'])
|
||||||
print(state)
|
print(state)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
status_thread = threading.Thread(target=push_handler)
|
||||||
|
status_thread.start()
|
||||||
|
status_thread.join()
|
||||||
|
Loading…
Reference in New Issue
Block a user