Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TSL5 ¶
type TSL5 struct {
// contains filtered or unexported fields
}
Struct which implements a TSL 5.0 endpoint
func NewTSL5Instance ¶
type TSLControl ¶
type TSLControl struct { RightTally TSLTallyColor `json:"right-tally"` TextTally TSLTallyColor `json:"text-tally"` LeftTally TSLTallyColor `json:"left-tally"` Brightness uint8 `json:"brightness"` DisplayData TSLDisplayData `json:"display-data"` ControlData TSLControlData `json:"control-data"` }
Struct representing control data defined by TSL 5.0
type TSLDisplayData ¶
type TSLDisplayData struct {
Text string `json:"text"`
}
Struct for storing display data
type TSLDisplayMessage ¶
type TSLDisplayMessage struct { Index uint16 `json:"index"` Control TSLControl `json:"control"` }
Struct representing a display message defined by TSL 5.0
type TSLPacket ¶
type TSLPacket struct { Version uint8 `json:"version"` Flags TSLFlags `json:"flags"` Screen uint16 `json:"screen"` Messages []TSLDisplayMessage `json:"messages"` }
Represents a TSL 5.0 packet stripped to useful information
func DecodePacket ¶
type TSLTallyColor ¶
type TSLTallyColor uint8
Constant defines for tally colors
const ( TALLY_OFF TSLTallyColor = 0 TALLY_RED TSLTallyColor = 1 TALLY_GREEN TSLTallyColor = 2 TALLY_AMBER TSLTallyColor = 3 )
Click to show internal directories.
Click to hide internal directories.