Public Member Functions | |
def | __init__ |
Oven state machine constructor. | |
def | oven |
The top level oven state. | |
def | heating |
The heating state. | |
def | toasting |
The toasting state. | |
def | baking |
The baking state. | |
def | doorOpen |
The doorOpen state. | |
def | ShowStatus |
Show the status of the oven state machine by showing what states it is currently in. |
def oven.Oven.__init__ | ( | self | ) |
Oven state machine constructor.
Sets the initial state
def oven.Oven.baking | ( | self, | ||
state_event | ||||
) |
The baking state.
state_event | The signal to send to this state |
def oven.Oven.doorOpen | ( | self, | ||
state_event | ||||
) |
The doorOpen state.
state_event | The signal to send to this state |
def oven.Oven.heating | ( | self, | ||
state_event | ||||
) |
The heating state.
state_event | The signal to send to this state |
def oven.Oven.oven | ( | self, | ||
state_event | ||||
) |
The top level oven state.
state_event | The signal to send to this state |
def oven.Oven.ShowStatus | ( | self | ) |
Show the status of the oven state machine by showing what states it is currently in.
def oven.Oven.toasting | ( | self, | ||
state_event | ||||
) |
The toasting state.
state_event | The signal to send to this state |