Stop dial tone after one number is dialed, set waiting time before starting a call to 5s
This commit is contained in:
parent
b6f5efd6ab
commit
3ceb7fade3
|
@ -166,9 +166,11 @@ class DialingState(AbstractState):
|
||||||
def __init__(self, controller):
|
def __init__(self, controller):
|
||||||
super(DialingState, self).__init__(controller)
|
super(DialingState, self).__init__(controller)
|
||||||
self._controller.get_phone().play_dial_tone()
|
self._controller.get_phone().play_dial_tone()
|
||||||
|
self.__dial_tone = True
|
||||||
self.__number = ''
|
self.__number = ''
|
||||||
|
|
||||||
def __on_leave(self):
|
def __on_leave(self):
|
||||||
|
if self.__dial_tone:
|
||||||
self._controller.get_phone().stop_playing()
|
self._controller.get_phone().stop_playing()
|
||||||
self._controller.abort_timeout()
|
self._controller.abort_timeout()
|
||||||
|
|
||||||
|
@ -178,9 +180,11 @@ class DialingState(AbstractState):
|
||||||
|
|
||||||
def on_nummernschalter_input(self, num):
|
def on_nummernschalter_input(self, num):
|
||||||
print('nummernschalter: %d' % (num))
|
print('nummernschalter: %d' % (num))
|
||||||
|
if self.__dial_tone:
|
||||||
|
self._controller.get_phone().stop_playing()
|
||||||
self.__number += str(num)
|
self.__number += str(num)
|
||||||
self._controller.abort_timeout()
|
self._controller.abort_timeout()
|
||||||
self._controller.set_timeout(7000)
|
self._controller.set_timeout(5000)
|
||||||
|
|
||||||
def on_timeout(self):
|
def on_timeout(self):
|
||||||
self.__on_leave()
|
self.__on_leave()
|
||||||
|
|
Loading…
Reference in a new issue