controlport

This controlport object is used to configure output levels on the I/O connector and monitor inputs and provides support for the BP200/BP900 USB button boards and GPIO ports. Typically, LEDs and buttons are attached to the GPIO connector on the BrightSign player or the BrightSign Expansion Module.

controlport IDL

Constructor(String port) ] interface ControlPort { bool SetOutputValue(unsigned param); bool SetOutputValues(unsigned p1, unsigned p2, unsigned p3, unsigned p4); bool SetPinValue(unsigned pin, unsigned param); bool GetPinValue(unsigned pin); bool ConfigureAsInput(unsigned pin); bool ConfigureAsOutput(unsigned pin); void Close() };

ON THIS PAGE





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

bool SetOutputValue()
bool SetOutputValue(unsigned param)

Configures the output of the specified pin, which can be either "off" (0) or "on" (1). If the button is not configured as an output, the resulting level is undefined. This method can also be used to configure LED output behavior on BP200/B900 button boards; see BP200/BP900 Setup for more details.

bool SetOutputValues()

Configures buttons on a BP200/BP900 button board. This method can only be used when the controlport object is instantiated with the Touchboard-<n>-LED-SETUP or Touchboard-<n>-LED parameter. See BP200/BP900 Setup for more details.

bool SetPinValue()

Returns a bool and configures either:

  • The output of the specified GPIO button and the value (either 0 or 1). If the button is not configured as an output, the resulting level is undefined.

  • The LED output behavior on BP200/B900 button boards. In this case, the offset is the pin value and the bit-mask is the unsigned parameter.

bool GetPinValue()

Returns true if the specified input pin is active (low). Returns false if the pin is inactive (not connected or high).

bool ConfigureAsInput()

Marks the specified button as an input. Input buttons are tri-stated and can be driven high or low externally.

bool ConfigureAsOutput()

Marks the specified button as an output. The output will be driven high or low depending on the current output state of the pin.

Close()

Shuts down the controlport instance

Events

Use addEventListener to listen for controldown, controlup, and controlevent.

Example

This example script sets a BP900 to “twinkle” by turning off each button LED at a different point in the cycle: