Re-add callback registrations

Those where lost in c5d305295b.
This commit is contained in:
klonfish 2020-12-28 19:37:13 +00:00
parent 02fa43566e
commit f3418971e6
1 changed files with 5 additions and 0 deletions

View File

@ -74,6 +74,11 @@ if __name__ == '__main__':
feap = FeApUserInterface(cfg.pinconfig)
controller = statemachine.StateMachineController(phone, feap, cfg.dialconfig)
feap.add_gabelschalter_callback(gabelschalter_cb)
feap.add_nummernschalter_active_callback(nummernschalter_active_cb)
feap.add_nummernschalter_done_callback(nummernschalter_done_cb)
phone.add_event_cb(phone_cb)
phone.start()
try:
while True: