6 lines
67 B
Python
6 lines
67 B
Python
|
# 定义设备类型
|
||
|
UNKNOWN = 0
|
||
|
MASTER = 1
|
||
|
SLAVER = 2
|
||
|
MANAGER = 3
|