The PFx Brick can currently store actions to respond to the Adafruit 389 remote control and the Sparkfun COM-11759 IR remote controls. However, the firmware logic to respond to these controls is not yet implemented (as of v.1.39).
Programming actions associated with these remotes would be up to the user community for now. However, it can be accomplished using python scripting language using the methods set_action_by_address or get_action_by_address. For example:
brick.set_action_by_address(EVT_SPARKFUN_UP, action)
brick.get_action_by_address(EVT_ADAFRUIT_ENTER, action)
where action is a instance of a PFxAction object.
The PFx Brick can currently store actions to respond to the Adafruit 389 remote control and the Sparkfun COM-11759 IR remote controls. However, the firmware logic to respond to these controls is not yet implemented (as of v.1.39).
Programming actions associated with these remotes would be up to the user community for now. However, it can be accomplished using python scripting language using the methods set_action_by_address or get_action_by_address. For example:
brick.set_action_by_address(EVT_SPARKFUN_UP, action)
brick.get_action_by_address(EVT_ADAFRUIT_ENTER, action)
where action is a instance of a PFxAction object.