Writes a byte to a 32-bit digital output port.
Most configurable ports require configuration before writing. Refer to board-specific information to determine if the port should be configured for your hardware. When configurable, use d_config_port() to configure a port for output.
d_out_32(board_num, port_type, data_value)
board_num (int)
The number associated with the board when it was installed with InstaCal or created with create_daq_device().
port_type (DigitalPortType)
There are three general types of digital ports – ports that are programmable as input or output, ports that are fixed input or output, and ports for which each bit may be programmed as input or output. For the first of these types, set PortType to DigitalPortType.FIRSTPORTA. For the latter two types, set PortType to DigitalPortType.AUXPORT. For devices with both types of digital ports, set PortType to either DigitalPortType.FIRSTPORTA or DigitalPortType.AUXPORT, depending on which digital inputs you wish to read.
data_value (int)
Digital value to write.