mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-12-22 02:14:26 +01:00
39 lines
1002 B
Python
Executable File
39 lines
1002 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Doorlockd -- Binary Kitchen's smart door opener
|
|
|
|
Copyright (c) Binary Kitchen e.V., 2018
|
|
|
|
Author:
|
|
Thomas Schmid <tom@binary-kitchen.de>
|
|
|
|
This work is licensed under the terms of the GNU GPL, version 2. See
|
|
the LICENSE file in the top-level directory.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
details.
|
|
"""
|
|
|
|
from pydoorlock.EventClient import EventClient
|
|
from pydoorlock.Door import DoorState
|
|
|
|
import json
|
|
import threading
|
|
|
|
state = DoorState(0)
|
|
|
|
def push_handler():
|
|
ec = EventClient("http://localhost:5000/push")
|
|
for event in ec.events():
|
|
data = json.loads(event['data'])
|
|
state = DoorState(data['status'])
|
|
print(state)
|
|
|
|
if __name__ == "__main__":
|
|
status_thread = threading.Thread(target=push_handler)
|
|
status_thread.start()
|
|
status_thread.join()
|