27 lines
730 B
Python
27 lines
730 B
Python
|
from access_control import access_control
|
||
|
from line_notify import LineNotify
|
||
|
import time
|
||
|
|
||
|
stm32 = access_control("COM12")
|
||
|
time.sleep(1)
|
||
|
while True:
|
||
|
cmd = input("Enter Command : ")
|
||
|
if(cmd == 'lock'):
|
||
|
stm32.lock_door()
|
||
|
if(cmd == 'unlock'):
|
||
|
stm32.unlock_door()
|
||
|
#stm32.unlock_door()
|
||
|
time.sleep(1)
|
||
|
#door_state = False
|
||
|
#while True:
|
||
|
#print(stm32._in_payloads)
|
||
|
#if(door_state != stm32.get_door_state()):
|
||
|
# door_state = stm32.get_door_state()
|
||
|
# notify = LineNotify("olK1QXriiuKgfxB6xkj7SIFfj9jsXfpl2PqmjCDuBRw")
|
||
|
# notify.send(f'door is {door_state}')
|
||
|
#if(stm32.get_door_state() == True):
|
||
|
# stm32.lock_door()
|
||
|
#else:
|
||
|
# stm32.unlock_door()
|
||
|
#time.sleep(0.01)
|