Object Creation
To create an controlport object, use the require()
method:
let control_port_class = require("@brightsign/legacy/controlport") let control_port = new control_port_class("TouchBoard-0-GPIO");
The controlport object is created with a parameter that specifies the port being used (TouchBoard-0-GPIO
in the example above). The port parameter can be one of the following:
BrightSign
: Specifies the onboard GPIO connector (including the SVC (GPIO12) button).Expander-GPIO
: Specifies the DB-25 connector on the BrightSign Expansion Module. If no BrightSign Expansion module is attached, then object creation will fail and Invalid will be returned.Expander-<n>-GPIO
: Specifies a USB-to-GPIO device connected to the player. Multiple USB-to-GPIO devices can be controlled using separate roControlPort instances: The first device corresponds to"Expander-0-GPIO"
, the second to"Expander-1-GPIO"
, etc.Expander-DIP
: Specifies the eight DIP switches on the BrightSign Expansion Module. If no BrightSign Expansion module is attached, then object creation will fail and Invalid will be returned. Note that hot plugging the BrightSign Expansion Module is not supported.Touchboard-<n>-GPIO
: Retrieves events from the specified BP200/BP900 button board. Events are handled in the same manner as events from the BrightSign port.Touchboard-<n>-LED-SETUP
: Sets various LED output options for the specified BP200/BP900 button board.Touchboard-<n>-LED
: Sets the bits for each button on the specified BP200/BP900 button board. The bits indicate whether the associated LED should be on or off.
Note
Since multiple BP200/BP900 button boards can be connected to a player simultaneously, the <n> value specifies the port enumeration of each board. The ordering of multiple attached boards is dependent on the order they appear in the data structure returned by roDeviceInfo.GetUSBTopology(). An unspecified enumeration value is synonymous with a button board with an enumeration value of 0 (e.g. Touchboard-GPIO and Touchboard-0-GPIO are identical).
ControlPort
SetOutputValue()
void SetOutputValue(unsigned param)
SetOutputValues()
void SetOutputValues(unsigned p1, unsigned p2, unsigned p3, unsigned p4)
Touchboard-<n>-LED-SETUP
or Touchboard-<n>-LED
parameter. See BP200/BP900 Setup for more details.SetPinValue()
void SetPinValue(unsigned pin, unsigned param)
bool GetPinValue()
Returns true
if the specified input pin is active (low). Returns false
if the pin is inactive (not connected or high).
ConfigureAsInput()
void ConfigureAsInput(unsigned pin)
ConfigureAsOutput()
void ConfigureAsOutput(unsigned pin)
Close()
void Close()
Events
Button presses are returned as oncontroldown and oncontrolup.
These events are available on the controlport object:
oncontroldown
oncontrolup
oncontrolevent