Add ConnectionType enum for connection type specification
This commit is contained in:
parent
2e6594d3d4
commit
71d3791e9e
1 changed files with 5 additions and 0 deletions
|
@ -157,6 +157,11 @@ class SwitchOnStatus(Enum):
|
||||||
FORCE_ON = '001'
|
FORCE_ON = '001'
|
||||||
LAST_STATUS = '002'
|
LAST_STATUS = '002'
|
||||||
|
|
||||||
|
@unique
|
||||||
|
class ConnectionType(Enum):
|
||||||
|
TCP = 'tcp'
|
||||||
|
SERIAL = 'serial'
|
||||||
|
|
||||||
|
|
||||||
# -- The Main BenQSmartBoard Class --------------------------------------------
|
# -- The Main BenQSmartBoard Class --------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue