tslumd.common

class tslumd.common.TallyColor(value)[source]

Bases: enum.IntEnum

Color enum for tally indicators

OFF = 0

Off

RED = 1

Red

GREEN = 2

Green

AMBER = 3

Amber

class tslumd.common.TallyType(value)[source]

Bases: enum.Enum

Enum for the three tally display types in the UMD protocol

no_tally = 0

No-op

rh_tally = 1

“Right-hand” tally

txt_tally = 2

“Text” tally

lh_tally = 3

“Left-hand” tally

class tslumd.common.TallyState(value)[source]

Bases: enum.IntFlag

An enumeration.

OFF = 0

Off

PREVIEW = 1

Preview

PROGRAM = 2

Program

class tslumd.common.MessageType(value)[source]

Bases: enum.Enum

Message type

New in version 0.0.2.

display = 1

A message containing tally display information

control = 2

A message containing control data

tslumd.common.TallyKey

A tuple of (screen_index, tally_index) to uniquely identify a single Tally within its Screen

alias of Tuple[int, int]