StateMachineBuilder
- class StateMachineBuilder(bpod)[source]
Bases:
StateMachineBase
Extend state machine with builder logic
Warning
A lot of data structures are kept here for compatibility
with original matlab library which are not so python-like. Anyone is welcome to enhance this class but keep in mind that it will affect the whole pybpodapi library.
- __init__(bpod)
- Parameters:
hardware (Hardware) – hardware description associated with this
state machine
Methods
__init__
(bpod)add_state
(state_name[, state_timer, ...])Adds a state to an existing state matrix.
build_header
([run_asap, statemachine_body_size])Builds state machine to send to Bpod box
Builds a 32 bit message to send to Bpod box
build_message_global_timer
()set_condition
(condition_number, ...)Set condition
set_global_counter
([counter_number, ...])Sets the threshold and monitored event for one of the 5 global counters.
set_global_timer
(timer_id, timer_duration[, ...])Sets the duration of a global timer.
set_global_timer_legacy
([timer_id, ...])Set global timer (legacy version)
Replace undeclared states (at the time they were referenced) with actual state numbers
- add_state(state_name, state_timer=0, state_change_conditions={}, output_actions=())
Adds a state to an existing state matrix.
- Parameters:
name (str) – A character string containing the unique name of the state.
The state will automatically be assigned a number for internal use and state synchronization via the sync port :param float timer: The state timer value, given in seconds. This value must be zero or positive, and can range between 0-3600s. If set to 0s and linked to a state transition, the state will still take ~100us to execute the state’s output actions before the transition completes :param dict state_change_conditions: Dictionary whose keys are names of a valid input event (state change) and values are names of states to enter if the previously listed event occurs (or ‘exit’ to exit the matrix and return all captured data) :param list(tuple) output_actions: a list of binary tuples where first value should contain the name of a valid output action and the second value should contain the value of the previously listed output action (see output actions for valid values).
Example:
sma.add_state( state_name='Port1Lit', state_timer=.25, state_change_conditions={'_Tup': 'Port3Lit'}, output_actions=[('PWM1', 255)])
- build_message()[source]
Builds state machine to send to Bpod box
- Return type:
list(int)
- build_message_32_bits()[source]
Builds a 32 bit message to send to Bpod box
- Return type:
list(float)
- set_condition(condition_number, condition_channel, channel_value)
Set condition
- Parameters:
condition_number (int)
condition_channel (str)
channel_value (int)
- set_global_counter(counter_number=None, target_event=None, threshold=None)
Sets the threshold and monitored event for one of the 5 global counters. Global counters can count instances of events, and handle when the count exceeds a threshold from any state (by triggering a state change).
- Parameters:
counter_number (int) – the number of the counter you are setting
(an integer, 1-5). :param str target_event: port where to listen for event to count :param int threshold: number of times that should be count until trigger timer
- set_global_timer(timer_id, timer_duration, on_set_delay=0, channel=None, on_message=1, off_message=0, loop_mode=0, loop_intervals=0, send_events=1, oneset_triggers=None)
Sets the duration of a global timer. Unlike state timers, global timers can be triggered from any state (as an output action), and handled from any state (by causing a state change).
- Parameters:
timer_ID (int) – the number of the timer you are setting (an integer, 1-5).
timer_duration (float) – the duration of the timer,
following timer start (0-3600 seconds) :param float on_set_delay: :param str channel: channel/port name Ex: ‘PWM2’ :param int on_message:
- set_global_timer_legacy(timer_id=None, timer_duration=None)
Set global timer (legacy version)
- Parameters:
timer_ID (int)
timer_duration (float) – timer duration in seconds
- update_state_numbers()[source]
Replace undeclared states (at the time they were referenced) with actual state numbers