Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Hacksaar
Sphinx
Commits
615e31f7
Commit
615e31f7
authored
Oct 27, 2013
by
Ralf
Browse files
remove now-unused variable
parent
78609160
Changes
1
Hide whitespace changes
Inline
Side-by-side
statemachine.py
View file @
615e31f7
...
...
@@ -156,7 +156,6 @@ class StateMachine():
class
StateFallback
(
State
):
def
__init__
(
self
,
sm
,
nervlist
=
None
):
super
().
__init__
(
sm
,
nervlist
)
self
.
_last_blink_time
=
time
.
time
()
self
.
_red_state
=
False
def
handle_pins_event
(
self
):
pins
=
self
.
pins
()
...
...
@@ -178,14 +177,12 @@ class StateMachine():
# not calling superclass because we want to stay in fallback mode
def
handle_wakeup_event
(
self
):
# blink red LED
now
=
time
.
time
()
if
self
.
_red_state
:
self
.
actor
().
act
(
Actor
.
CMD_RED_OFF
)
self
.
_red_state
=
False
else
:
self
.
actor
().
act
(
Actor
.
CMD_RED_ON
)
self
.
_red_state
=
True
self
.
_last_blink_time
=
now
def
handle_cmd_unlock_event
(
self
,
arg
):
if
arg
is
not
None
:
arg
(
"298 Fallback Okay: Trying to unlock the door. The System is in fallback mode, success information is not available."
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment