pymammotion 0.0.37__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pymammotion might be problematic. Click here for more details.
- pymammotion/__init__.py +43 -0
- pymammotion/aliyun/cloud_gateway.py +549 -0
- pymammotion/aliyun/cloud_service.py +65 -0
- pymammotion/aliyun/dataclass/aep_response.py +18 -0
- pymammotion/aliyun/dataclass/connect_response.py +51 -0
- pymammotion/aliyun/dataclass/dev_by_account_response.py +43 -0
- pymammotion/aliyun/dataclass/login_by_oauth_response.py +65 -0
- pymammotion/aliyun/dataclass/regions_response.py +26 -0
- pymammotion/aliyun/dataclass/session_by_authcode_response.py +18 -0
- pymammotion/aliyun/tmp_constant.py +175 -0
- pymammotion/bluetooth/__init__.py +1 -0
- pymammotion/bluetooth/ble.py +74 -0
- pymammotion/bluetooth/ble_message.py +430 -0
- pymammotion/bluetooth/const.py +27 -0
- pymammotion/bluetooth/data/__init__.py +0 -0
- pymammotion/bluetooth/data/convert.py +26 -0
- pymammotion/bluetooth/data/framectrldata.py +40 -0
- pymammotion/bluetooth/data/notifydata.py +63 -0
- pymammotion/const.py +9 -0
- pymammotion/data/__init__.py +0 -0
- pymammotion/data/model/__init__.py +8 -0
- pymammotion/data/model/device.py +157 -0
- pymammotion/data/model/enums.py +67 -0
- pymammotion/data/model/excute_boarder_params.py +48 -0
- pymammotion/data/model/execute_boarder.py +36 -0
- pymammotion/data/model/generate_route_information.py +133 -0
- pymammotion/data/model/hash_list.py +17 -0
- pymammotion/data/model/mowing_modes.py +37 -0
- pymammotion/data/model/plan.py +58 -0
- pymammotion/data/model/rapid_state.py +45 -0
- pymammotion/data/model/region_data.py +99 -0
- pymammotion/data/mqtt/__init__.py +1 -0
- pymammotion/data/mqtt/event.py +90 -0
- pymammotion/data/mqtt/properties.py +140 -0
- pymammotion/data/mqtt/status.py +52 -0
- pymammotion/event/__init__.py +6 -0
- pymammotion/event/event.py +50 -0
- pymammotion/http/_init_.py +0 -0
- pymammotion/http/http.py +76 -0
- pymammotion/luba/_init_.py +0 -0
- pymammotion/luba/base.py +52 -0
- pymammotion/mammotion/__init__.py +0 -0
- pymammotion/mammotion/commands/__init__.py +0 -0
- pymammotion/mammotion/commands/abstract_message.py +7 -0
- pymammotion/mammotion/commands/mammotion_command.py +34 -0
- pymammotion/mammotion/commands/messages/__init__.py +0 -0
- pymammotion/mammotion/commands/messages/driver.py +108 -0
- pymammotion/mammotion/commands/messages/media.py +36 -0
- pymammotion/mammotion/commands/messages/navigation.py +535 -0
- pymammotion/mammotion/commands/messages/network.py +236 -0
- pymammotion/mammotion/commands/messages/ota.py +34 -0
- pymammotion/mammotion/commands/messages/system.py +266 -0
- pymammotion/mammotion/commands/messages/video.py +27 -0
- pymammotion/mammotion/control/__init__.py +0 -0
- pymammotion/mammotion/control/joystick.py +184 -0
- pymammotion/mammotion/devices/__init__.py +1 -0
- pymammotion/mammotion/devices/luba.py +564 -0
- pymammotion/mqtt/mqtt.py +230 -0
- pymammotion/proto/__init__.py +0 -0
- pymammotion/proto/common.proto +7 -0
- pymammotion/proto/common.py +12 -0
- pymammotion/proto/common_pb2.py +25 -0
- pymammotion/proto/common_pb2.pyi +13 -0
- pymammotion/proto/dev_net.proto +297 -0
- pymammotion/proto/dev_net.py +381 -0
- pymammotion/proto/dev_net_pb2.py +107 -0
- pymammotion/proto/dev_net_pb2.pyi +472 -0
- pymammotion/proto/luba_msg.proto +73 -0
- pymammotion/proto/luba_msg.py +80 -0
- pymammotion/proto/luba_msg_pb2.py +40 -0
- pymammotion/proto/luba_msg_pb2.pyi +93 -0
- pymammotion/proto/luba_mul.proto +68 -0
- pymammotion/proto/luba_mul.py +76 -0
- pymammotion/proto/luba_mul_pb2.py +45 -0
- pymammotion/proto/luba_mul_pb2.pyi +91 -0
- pymammotion/proto/mctrl_driver.proto +67 -0
- pymammotion/proto/mctrl_driver.py +100 -0
- pymammotion/proto/mctrl_driver_pb2.py +45 -0
- pymammotion/proto/mctrl_driver_pb2.pyi +112 -0
- pymammotion/proto/mctrl_nav.proto +485 -0
- pymammotion/proto/mctrl_nav.py +589 -0
- pymammotion/proto/mctrl_nav_pb2.py +116 -0
- pymammotion/proto/mctrl_nav_pb2.pyi +875 -0
- pymammotion/proto/mctrl_ota.proto +42 -0
- pymammotion/proto/mctrl_ota.py +48 -0
- pymammotion/proto/mctrl_ota_pb2.py +35 -0
- pymammotion/proto/mctrl_ota_pb2.pyi +65 -0
- pymammotion/proto/mctrl_pept.proto +29 -0
- pymammotion/proto/mctrl_pept.py +41 -0
- pymammotion/proto/mctrl_pept_pb2.py +31 -0
- pymammotion/proto/mctrl_pept_pb2.pyi +50 -0
- pymammotion/proto/mctrl_sys.proto +487 -0
- pymammotion/proto/mctrl_sys.py +574 -0
- pymammotion/proto/mctrl_sys_pb2.py +142 -0
- pymammotion/proto/mctrl_sys_pb2.pyi +787 -0
- pymammotion/py.typed +0 -0
- pymammotion/utility/constant/__init__.py +1 -0
- pymammotion/utility/constant/device_constant.py +238 -0
- pymammotion/utility/datatype_converter.py +80 -0
- pymammotion/utility/device_type.py +152 -0
- pymammotion/utility/periodic.py +41 -0
- pymammotion/utility/rocker_util.py +135 -0
- pymammotion-0.0.37.dist-info/LICENSE +674 -0
- pymammotion-0.0.37.dist-info/METADATA +92 -0
- pymammotion-0.0.37.dist-info/RECORD +106 -0
- pymammotion-0.0.37.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,787 @@
|
|
|
1
|
+
from pyluba.proto import dev_net_pb2 as _dev_net_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
ERASE: Operation
|
|
10
|
+
NET_USED_TYPE_MNET: net_used_type
|
|
11
|
+
NET_USED_TYPE_NONE: net_used_type
|
|
12
|
+
NET_USED_TYPE_WIFI: net_used_type
|
|
13
|
+
OFF_PART_DEV_INFO: OffPartId
|
|
14
|
+
OFF_PART_DL_IMG: OffPartId
|
|
15
|
+
OFF_PART_FLASHDB: OffPartId
|
|
16
|
+
OFF_PART_MAX: OffPartId
|
|
17
|
+
OFF_PART_NAKEDB: OffPartId
|
|
18
|
+
OFF_PART_NAKEDB_BACK: OffPartId
|
|
19
|
+
OFF_PART_UPDINFO: OffPartId
|
|
20
|
+
OFF_PART_UPDINFO_BACK: OffPartId
|
|
21
|
+
OFF_PART_UPD_APP_IMG: OffPartId
|
|
22
|
+
OFF_PART_UPD_BMS_IMG: OffPartId
|
|
23
|
+
OFF_PART_UPD_TMP_IMG: OffPartId
|
|
24
|
+
QC_APP_ITEM_KEY: QCAppTestId
|
|
25
|
+
QC_APP_ITEM_ON_CHARGESATSTION: QCAppTestId
|
|
26
|
+
QC_APP_ITEM_SENEOR: QCAppTestId
|
|
27
|
+
QC_APP_ITEM_SQ: QCAppTestId
|
|
28
|
+
QC_APP_TEST_BLE_RSSI: QCAppTestId
|
|
29
|
+
QC_APP_TEST_BUMPER_FRONTLEFT: QCAppTestId
|
|
30
|
+
QC_APP_TEST_BUMPER_FRONTRIGHT: QCAppTestId
|
|
31
|
+
QC_APP_TEST_BUZZ: QCAppTestId
|
|
32
|
+
QC_APP_TEST_CHARGESTATION_TEMP: QCAppTestId
|
|
33
|
+
QC_APP_TEST_CNO_REF_STATION: QCAppTestId
|
|
34
|
+
QC_APP_TEST_CNO_ROVER: QCAppTestId
|
|
35
|
+
QC_APP_TEST_LIFT: QCAppTestId
|
|
36
|
+
QC_APP_TEST_LOCATION_STATE: QCAppTestId
|
|
37
|
+
QC_APP_TEST_MAX: QCAppTestId
|
|
38
|
+
QC_APP_TEST_RAIN: QCAppTestId
|
|
39
|
+
QC_APP_TEST_REF_STATION_LINK_STATUS: QCAppTestId
|
|
40
|
+
QC_APP_TEST_ROLL_LEFT: QCAppTestId
|
|
41
|
+
QC_APP_TEST_ROLL_RIGHT: QCAppTestId
|
|
42
|
+
QC_APP_TEST_SATELLITES_COMMON_VIEW: QCAppTestId
|
|
43
|
+
QC_APP_TEST_SATELLITES_REF_STATION_L1: QCAppTestId
|
|
44
|
+
QC_APP_TEST_SATELLITES_REF_STATION_L2: QCAppTestId
|
|
45
|
+
QC_APP_TEST_SATELLITES_ROVER: QCAppTestId
|
|
46
|
+
QC_APP_TEST_STATIC_OBSTACLE_DETECTION: QCAppTestId
|
|
47
|
+
QC_APP_TEST_STOP: QCAppTestId
|
|
48
|
+
QC_APP_TEST_ULTRA0_COVER: QCAppTestId
|
|
49
|
+
QC_APP_TEST_ULTRA1_COVER: QCAppTestId
|
|
50
|
+
QC_APP_TEST_ULTRA2_COVER: QCAppTestId
|
|
51
|
+
QC_APP_TEST_ULTRA_UNCOVER: QCAppTestId
|
|
52
|
+
QC_APP_TEST_UNLOCK: QCAppTestId
|
|
53
|
+
QC_APP_TEST_X3_SPEAKER: QCAppTestId
|
|
54
|
+
READ: Operation
|
|
55
|
+
RIT_CONNECT: rpt_info_type
|
|
56
|
+
RIT_DEV_LOCAL: rpt_info_type
|
|
57
|
+
RIT_DEV_STA: rpt_info_type
|
|
58
|
+
RIT_FW_INFO: rpt_info_type
|
|
59
|
+
RIT_MAINTAIN: rpt_info_type
|
|
60
|
+
RIT_RTK: rpt_info_type
|
|
61
|
+
RIT_VIO: rpt_info_type
|
|
62
|
+
RIT_VISION_POINT: rpt_info_type
|
|
63
|
+
RIT_VISION_STATISTIC: rpt_info_type
|
|
64
|
+
RIT_WORK: rpt_info_type
|
|
65
|
+
RPT_KEEP: rpt_act
|
|
66
|
+
RPT_START: rpt_act
|
|
67
|
+
RPT_STOP: rpt_act
|
|
68
|
+
WRITE: Operation
|
|
69
|
+
|
|
70
|
+
class LoraCfgReq(_message.Message):
|
|
71
|
+
__slots__ = ["cfg", "op"]
|
|
72
|
+
CFG_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
cfg: str
|
|
75
|
+
op: int
|
|
76
|
+
def __init__(self, op: _Optional[int] = ..., cfg: _Optional[str] = ...) -> None: ...
|
|
77
|
+
|
|
78
|
+
class LoraCfgRsp(_message.Message):
|
|
79
|
+
__slots__ = ["cfg", "fac_cfg", "op", "result"]
|
|
80
|
+
CFG_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
FAC_CFG_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
cfg: str
|
|
85
|
+
fac_cfg: str
|
|
86
|
+
op: int
|
|
87
|
+
result: int
|
|
88
|
+
def __init__(self, result: _Optional[int] = ..., op: _Optional[int] = ..., cfg: _Optional[str] = ..., fac_cfg: _Optional[str] = ...) -> None: ...
|
|
89
|
+
|
|
90
|
+
class MctlSys(_message.Message):
|
|
91
|
+
__slots__ = ["bidire_comm_cmd", "border", "device_product_type_info", "job_plan", "mow_to_app_info", "mow_to_app_qctools_info", "plan_job_del", "simulation_cmd", "systemRapidStateTunnel", "systemTardStateTunnel", "systemTmpCycleTx", "systemUpdateBuf", "toapp_batinfo", "toapp_dev_fw_info", "toapp_err_code", "toapp_lora_cfg_rsp", "toapp_mow_info", "toapp_plan_status", "toapp_report_data", "toapp_ul_fprogress", "toapp_work_state", "todev_data_time", "todev_deljobplan", "todev_get_dev_fw_info", "todev_job_plan_time", "todev_knife_ctrl", "todev_lora_cfg_req", "todev_mow_info_up", "todev_off_chip_flash", "todev_report_cfg", "todev_reset_system", "todev_reset_system_status", "todev_time_ctrl_light", "todev_time_zone"]
|
|
92
|
+
BIDIRE_COMM_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
BORDER_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
DEVICE_PRODUCT_TYPE_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
JOB_PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
MOW_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
MOW_TO_APP_QCTOOLS_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
PLAN_JOB_DEL_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
SIMULATION_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
SYSTEMRAPIDSTATETUNNEL_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
SYSTEMTARDSTATETUNNEL_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
SYSTEMTMPCYCLETX_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
SYSTEMUPDATEBUF_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
TOAPP_BATINFO_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
TOAPP_DEV_FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
TOAPP_ERR_CODE_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
TOAPP_LORA_CFG_RSP_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
TOAPP_MOW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
TOAPP_PLAN_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
TOAPP_REPORT_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
TOAPP_UL_FPROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
TOAPP_WORK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
TODEV_DATA_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
TODEV_DELJOBPLAN_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
TODEV_GET_DEV_FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
TODEV_JOB_PLAN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
TODEV_KNIFE_CTRL_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
TODEV_LORA_CFG_REQ_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
TODEV_MOW_INFO_UP_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
TODEV_OFF_CHIP_FLASH_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
TODEV_REPORT_CFG_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
TODEV_RESET_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
TODEV_RESET_SYSTEM_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
TODEV_TIME_CTRL_LIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
TODEV_TIME_ZONE_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
bidire_comm_cmd: SysCommCmd
|
|
127
|
+
border: SysBorder
|
|
128
|
+
device_product_type_info: device_product_type_info_t
|
|
129
|
+
job_plan: SysJobPlan
|
|
130
|
+
mow_to_app_info: mow_to_app_info_t
|
|
131
|
+
mow_to_app_qctools_info: mow_to_app_qctools_info_t
|
|
132
|
+
plan_job_del: int
|
|
133
|
+
simulation_cmd: mCtrlSimulationCmdData
|
|
134
|
+
systemRapidStateTunnel: systemRapidStateTunnel_msg
|
|
135
|
+
systemTardStateTunnel: systemTardStateTunnel_msg
|
|
136
|
+
systemTmpCycleTx: systemTmpCycleTx_msg
|
|
137
|
+
systemUpdateBuf: systemUpdateBuf_msg
|
|
138
|
+
toapp_batinfo: SysBatUp
|
|
139
|
+
toapp_dev_fw_info: device_fw_info
|
|
140
|
+
toapp_err_code: SysDevErrCode
|
|
141
|
+
toapp_lora_cfg_rsp: LoraCfgRsp
|
|
142
|
+
toapp_mow_info: SysMowInfo
|
|
143
|
+
toapp_plan_status: SysPlanJobStatus
|
|
144
|
+
toapp_report_data: report_info_data
|
|
145
|
+
toapp_ul_fprogress: SysUploadFileProgress
|
|
146
|
+
toapp_work_state: SysWorkState
|
|
147
|
+
todev_data_time: SysSetDateTime
|
|
148
|
+
todev_deljobplan: SysDelJobPlan
|
|
149
|
+
todev_get_dev_fw_info: int
|
|
150
|
+
todev_job_plan_time: SysJobPlanTime
|
|
151
|
+
todev_knife_ctrl: SysKnifeControl
|
|
152
|
+
todev_lora_cfg_req: LoraCfgReq
|
|
153
|
+
todev_mow_info_up: int
|
|
154
|
+
todev_off_chip_flash: SysOffChipFlash
|
|
155
|
+
todev_report_cfg: report_info_cfg
|
|
156
|
+
todev_reset_system: int
|
|
157
|
+
todev_reset_system_status: SysResetSystemStatus
|
|
158
|
+
todev_time_ctrl_light: TimeCtrlLight
|
|
159
|
+
todev_time_zone: SysSetTimeZone
|
|
160
|
+
def __init__(self, toapp_batinfo: _Optional[_Union[SysBatUp, _Mapping]] = ..., toapp_work_state: _Optional[_Union[SysWorkState, _Mapping]] = ..., todev_time_zone: _Optional[_Union[SysSetTimeZone, _Mapping]] = ..., todev_data_time: _Optional[_Union[SysSetDateTime, _Mapping]] = ..., job_plan: _Optional[_Union[SysJobPlan, _Mapping]] = ..., toapp_err_code: _Optional[_Union[SysDevErrCode, _Mapping]] = ..., todev_job_plan_time: _Optional[_Union[SysJobPlanTime, _Mapping]] = ..., toapp_mow_info: _Optional[_Union[SysMowInfo, _Mapping]] = ..., bidire_comm_cmd: _Optional[_Union[SysCommCmd, _Mapping]] = ..., plan_job_del: _Optional[int] = ..., border: _Optional[_Union[SysBorder, _Mapping]] = ..., toapp_plan_status: _Optional[_Union[SysPlanJobStatus, _Mapping]] = ..., toapp_ul_fprogress: _Optional[_Union[SysUploadFileProgress, _Mapping]] = ..., todev_deljobplan: _Optional[_Union[SysDelJobPlan, _Mapping]] = ..., todev_mow_info_up: _Optional[int] = ..., todev_knife_ctrl: _Optional[_Union[SysKnifeControl, _Mapping]] = ..., todev_reset_system: _Optional[int] = ..., todev_reset_system_status: _Optional[_Union[SysResetSystemStatus, _Mapping]] = ..., systemRapidStateTunnel: _Optional[_Union[systemRapidStateTunnel_msg, _Mapping]] = ..., systemTardStateTunnel: _Optional[_Union[systemTardStateTunnel_msg, _Mapping]] = ..., systemUpdateBuf: _Optional[_Union[systemUpdateBuf_msg, _Mapping]] = ..., todev_time_ctrl_light: _Optional[_Union[TimeCtrlLight, _Mapping]] = ..., systemTmpCycleTx: _Optional[_Union[systemTmpCycleTx_msg, _Mapping]] = ..., todev_off_chip_flash: _Optional[_Union[SysOffChipFlash, _Mapping]] = ..., todev_get_dev_fw_info: _Optional[int] = ..., toapp_dev_fw_info: _Optional[_Union[device_fw_info, _Mapping]] = ..., todev_lora_cfg_req: _Optional[_Union[LoraCfgReq, _Mapping]] = ..., toapp_lora_cfg_rsp: _Optional[_Union[LoraCfgRsp, _Mapping]] = ..., mow_to_app_info: _Optional[_Union[mow_to_app_info_t, _Mapping]] = ..., device_product_type_info: _Optional[_Union[device_product_type_info_t, _Mapping]] = ..., mow_to_app_qctools_info: _Optional[_Union[mow_to_app_qctools_info_t, _Mapping]] = ..., todev_report_cfg: _Optional[_Union[report_info_cfg, _Mapping]] = ..., toapp_report_data: _Optional[_Union[report_info_data, _Mapping]] = ..., simulation_cmd: _Optional[_Union[mCtrlSimulationCmdData, _Mapping]] = ...) -> None: ...
|
|
161
|
+
|
|
162
|
+
class QCAppTestConditions(_message.Message):
|
|
163
|
+
__slots__ = ["cond_type", "double_val", "float_val", "int_val", "string_val"]
|
|
164
|
+
COND_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
DOUBLE_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
FLOAT_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
INT_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
STRING_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
cond_type: str
|
|
170
|
+
double_val: float
|
|
171
|
+
float_val: float
|
|
172
|
+
int_val: int
|
|
173
|
+
string_val: str
|
|
174
|
+
def __init__(self, cond_type: _Optional[str] = ..., int_val: _Optional[int] = ..., float_val: _Optional[float] = ..., double_val: _Optional[float] = ..., string_val: _Optional[str] = ...) -> None: ...
|
|
175
|
+
|
|
176
|
+
class QCAppTestExcept(_message.Message):
|
|
177
|
+
__slots__ = ["conditions", "except_type"]
|
|
178
|
+
CONDITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
EXCEPT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
conditions: _containers.RepeatedCompositeFieldContainer[QCAppTestConditions]
|
|
181
|
+
except_type: str
|
|
182
|
+
def __init__(self, except_type: _Optional[str] = ..., conditions: _Optional[_Iterable[_Union[QCAppTestConditions, _Mapping]]] = ...) -> None: ...
|
|
183
|
+
|
|
184
|
+
class SysBatUp(_message.Message):
|
|
185
|
+
__slots__ = ["batVal"]
|
|
186
|
+
BATVAL_FIELD_NUMBER: _ClassVar[int]
|
|
187
|
+
batVal: int
|
|
188
|
+
def __init__(self, batVal: _Optional[int] = ...) -> None: ...
|
|
189
|
+
|
|
190
|
+
class SysBoardType(_message.Message):
|
|
191
|
+
__slots__ = ["boardType"]
|
|
192
|
+
BOARDTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
boardType: int
|
|
194
|
+
def __init__(self, boardType: _Optional[int] = ...) -> None: ...
|
|
195
|
+
|
|
196
|
+
class SysBorder(_message.Message):
|
|
197
|
+
__slots__ = ["borderval"]
|
|
198
|
+
BORDERVAL_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
borderval: int
|
|
200
|
+
def __init__(self, borderval: _Optional[int] = ...) -> None: ...
|
|
201
|
+
|
|
202
|
+
class SysCommCmd(_message.Message):
|
|
203
|
+
__slots__ = ["context", "id", "rw"]
|
|
204
|
+
CONTEXT_FIELD_NUMBER: _ClassVar[int]
|
|
205
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
RW_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
context: int
|
|
208
|
+
id: int
|
|
209
|
+
rw: int
|
|
210
|
+
def __init__(self, rw: _Optional[int] = ..., id: _Optional[int] = ..., context: _Optional[int] = ...) -> None: ...
|
|
211
|
+
|
|
212
|
+
class SysDelJobPlan(_message.Message):
|
|
213
|
+
__slots__ = ["deviceId", "planId"]
|
|
214
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
215
|
+
PLANID_FIELD_NUMBER: _ClassVar[int]
|
|
216
|
+
deviceId: str
|
|
217
|
+
planId: str
|
|
218
|
+
def __init__(self, deviceId: _Optional[str] = ..., planId: _Optional[str] = ...) -> None: ...
|
|
219
|
+
|
|
220
|
+
class SysDevErrCode(_message.Message):
|
|
221
|
+
__slots__ = ["errorCode"]
|
|
222
|
+
ERRORCODE_FIELD_NUMBER: _ClassVar[int]
|
|
223
|
+
errorCode: int
|
|
224
|
+
def __init__(self, errorCode: _Optional[int] = ...) -> None: ...
|
|
225
|
+
|
|
226
|
+
class SysErrorCode(_message.Message):
|
|
227
|
+
__slots__ = ["code_no"]
|
|
228
|
+
CODE_NO_FIELD_NUMBER: _ClassVar[int]
|
|
229
|
+
code_no: int
|
|
230
|
+
def __init__(self, code_no: _Optional[int] = ...) -> None: ...
|
|
231
|
+
|
|
232
|
+
class SysJobPlan(_message.Message):
|
|
233
|
+
__slots__ = ["jobId", "jobMode", "knifeHeight", "rainTactics"]
|
|
234
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
235
|
+
JOBMODE_FIELD_NUMBER: _ClassVar[int]
|
|
236
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
237
|
+
RAINTACTICS_FIELD_NUMBER: _ClassVar[int]
|
|
238
|
+
jobId: int
|
|
239
|
+
jobMode: int
|
|
240
|
+
knifeHeight: int
|
|
241
|
+
rainTactics: int
|
|
242
|
+
def __init__(self, jobId: _Optional[int] = ..., jobMode: _Optional[int] = ..., rainTactics: _Optional[int] = ..., knifeHeight: _Optional[int] = ...) -> None: ...
|
|
243
|
+
|
|
244
|
+
class SysJobPlanTime(_message.Message):
|
|
245
|
+
__slots__ = ["end_job_time", "everyDay", "job_plan", "job_plan_enable", "job_plan_mode", "planId", "start_job_time", "timeInWeekDay", "time_in_day", "weekDay"]
|
|
246
|
+
END_JOB_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
247
|
+
EVERYDAY_FIELD_NUMBER: _ClassVar[int]
|
|
248
|
+
JOB_PLAN_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
249
|
+
JOB_PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
250
|
+
JOB_PLAN_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
251
|
+
PLANID_FIELD_NUMBER: _ClassVar[int]
|
|
252
|
+
START_JOB_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
253
|
+
TIMEINWEEKDAY_FIELD_NUMBER: _ClassVar[int]
|
|
254
|
+
TIME_IN_DAY_FIELD_NUMBER: _ClassVar[int]
|
|
255
|
+
WEEKDAY_FIELD_NUMBER: _ClassVar[int]
|
|
256
|
+
end_job_time: int
|
|
257
|
+
everyDay: int
|
|
258
|
+
job_plan: SysJobPlan
|
|
259
|
+
job_plan_enable: int
|
|
260
|
+
job_plan_mode: int
|
|
261
|
+
planId: int
|
|
262
|
+
start_job_time: int
|
|
263
|
+
timeInWeekDay: _containers.RepeatedScalarFieldContainer[int]
|
|
264
|
+
time_in_day: int
|
|
265
|
+
weekDay: _containers.RepeatedScalarFieldContainer[int]
|
|
266
|
+
def __init__(self, planId: _Optional[int] = ..., start_job_time: _Optional[int] = ..., end_job_time: _Optional[int] = ..., time_in_day: _Optional[int] = ..., job_plan_mode: _Optional[int] = ..., job_plan_enable: _Optional[int] = ..., weekDay: _Optional[_Iterable[int]] = ..., timeInWeekDay: _Optional[_Iterable[int]] = ..., everyDay: _Optional[int] = ..., job_plan: _Optional[_Union[SysJobPlan, _Mapping]] = ...) -> None: ...
|
|
267
|
+
|
|
268
|
+
class SysKnifeControl(_message.Message):
|
|
269
|
+
__slots__ = ["knife_height", "knife_status"]
|
|
270
|
+
KNIFE_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
KNIFE_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
knife_height: int
|
|
273
|
+
knife_status: int
|
|
274
|
+
def __init__(self, knife_status: _Optional[int] = ..., knife_height: _Optional[int] = ...) -> None: ...
|
|
275
|
+
|
|
276
|
+
class SysMowInfo(_message.Message):
|
|
277
|
+
__slots__ = ["RTKstars", "RTKstatus", "batVal", "deviceState", "knifeHeight"]
|
|
278
|
+
BATVAL_FIELD_NUMBER: _ClassVar[int]
|
|
279
|
+
DEVICESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
280
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
281
|
+
RTKSTARS_FIELD_NUMBER: _ClassVar[int]
|
|
282
|
+
RTKSTATUS_FIELD_NUMBER: _ClassVar[int]
|
|
283
|
+
RTKstars: int
|
|
284
|
+
RTKstatus: int
|
|
285
|
+
batVal: int
|
|
286
|
+
deviceState: int
|
|
287
|
+
knifeHeight: int
|
|
288
|
+
def __init__(self, deviceState: _Optional[int] = ..., batVal: _Optional[int] = ..., knifeHeight: _Optional[int] = ..., RTKstatus: _Optional[int] = ..., RTKstars: _Optional[int] = ...) -> None: ...
|
|
289
|
+
|
|
290
|
+
class SysOffChipFlash(_message.Message):
|
|
291
|
+
__slots__ = ["code", "data", "id", "length", "msg", "offset", "op", "start_addr"]
|
|
292
|
+
CODE_FIELD_NUMBER: _ClassVar[int]
|
|
293
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
294
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
296
|
+
MSG_FIELD_NUMBER: _ClassVar[int]
|
|
297
|
+
OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
298
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
299
|
+
START_ADDR_FIELD_NUMBER: _ClassVar[int]
|
|
300
|
+
code: int
|
|
301
|
+
data: bytes
|
|
302
|
+
id: OffPartId
|
|
303
|
+
length: int
|
|
304
|
+
msg: str
|
|
305
|
+
offset: int
|
|
306
|
+
op: Operation
|
|
307
|
+
start_addr: int
|
|
308
|
+
def __init__(self, op: _Optional[_Union[Operation, str]] = ..., id: _Optional[_Union[OffPartId, str]] = ..., start_addr: _Optional[int] = ..., offset: _Optional[int] = ..., length: _Optional[int] = ..., data: _Optional[bytes] = ..., code: _Optional[int] = ..., msg: _Optional[str] = ...) -> None: ...
|
|
309
|
+
|
|
310
|
+
class SysOptiLineAck(_message.Message):
|
|
311
|
+
__slots__ = ["currentFrame", "responesCmd"]
|
|
312
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
313
|
+
RESPONESCMD_FIELD_NUMBER: _ClassVar[int]
|
|
314
|
+
currentFrame: int
|
|
315
|
+
responesCmd: int
|
|
316
|
+
def __init__(self, responesCmd: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
317
|
+
|
|
318
|
+
class SysPlanJobStatus(_message.Message):
|
|
319
|
+
__slots__ = ["planjob_status"]
|
|
320
|
+
PLANJOB_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
321
|
+
planjob_status: int
|
|
322
|
+
def __init__(self, planjob_status: _Optional[int] = ...) -> None: ...
|
|
323
|
+
|
|
324
|
+
class SysResetSystemStatus(_message.Message):
|
|
325
|
+
__slots__ = ["reset_staus"]
|
|
326
|
+
RESET_STAUS_FIELD_NUMBER: _ClassVar[int]
|
|
327
|
+
reset_staus: int
|
|
328
|
+
def __init__(self, reset_staus: _Optional[int] = ...) -> None: ...
|
|
329
|
+
|
|
330
|
+
class SysSetDateTime(_message.Message):
|
|
331
|
+
__slots__ = ["Date", "Hours", "Minutes", "Month", "Seconds", "Week", "Year", "daylight", "timeZone"]
|
|
332
|
+
DATE_FIELD_NUMBER: _ClassVar[int]
|
|
333
|
+
DAYLIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
334
|
+
Date: int
|
|
335
|
+
HOURS_FIELD_NUMBER: _ClassVar[int]
|
|
336
|
+
Hours: int
|
|
337
|
+
MINUTES_FIELD_NUMBER: _ClassVar[int]
|
|
338
|
+
MONTH_FIELD_NUMBER: _ClassVar[int]
|
|
339
|
+
Minutes: int
|
|
340
|
+
Month: int
|
|
341
|
+
SECONDS_FIELD_NUMBER: _ClassVar[int]
|
|
342
|
+
Seconds: int
|
|
343
|
+
TIMEZONE_FIELD_NUMBER: _ClassVar[int]
|
|
344
|
+
WEEK_FIELD_NUMBER: _ClassVar[int]
|
|
345
|
+
Week: int
|
|
346
|
+
YEAR_FIELD_NUMBER: _ClassVar[int]
|
|
347
|
+
Year: int
|
|
348
|
+
daylight: int
|
|
349
|
+
timeZone: int
|
|
350
|
+
def __init__(self, Year: _Optional[int] = ..., Month: _Optional[int] = ..., Date: _Optional[int] = ..., Week: _Optional[int] = ..., Hours: _Optional[int] = ..., Minutes: _Optional[int] = ..., Seconds: _Optional[int] = ..., timeZone: _Optional[int] = ..., daylight: _Optional[int] = ...) -> None: ...
|
|
351
|
+
|
|
352
|
+
class SysSetTimeZone(_message.Message):
|
|
353
|
+
__slots__ = ["timeArea", "timeStamp"]
|
|
354
|
+
TIMEAREA_FIELD_NUMBER: _ClassVar[int]
|
|
355
|
+
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
356
|
+
timeArea: int
|
|
357
|
+
timeStamp: int
|
|
358
|
+
def __init__(self, timeStamp: _Optional[int] = ..., timeArea: _Optional[int] = ...) -> None: ...
|
|
359
|
+
|
|
360
|
+
class SysSwVersion(_message.Message):
|
|
361
|
+
__slots__ = ["boardType", "versionLen"]
|
|
362
|
+
BOARDTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
363
|
+
VERSIONLEN_FIELD_NUMBER: _ClassVar[int]
|
|
364
|
+
boardType: int
|
|
365
|
+
versionLen: int
|
|
366
|
+
def __init__(self, boardType: _Optional[int] = ..., versionLen: _Optional[int] = ...) -> None: ...
|
|
367
|
+
|
|
368
|
+
class SysUploadFileProgress(_message.Message):
|
|
369
|
+
__slots__ = ["bizId", "progress", "result"]
|
|
370
|
+
BIZID_FIELD_NUMBER: _ClassVar[int]
|
|
371
|
+
PROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
372
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
373
|
+
bizId: str
|
|
374
|
+
progress: int
|
|
375
|
+
result: int
|
|
376
|
+
def __init__(self, bizId: _Optional[str] = ..., result: _Optional[int] = ..., progress: _Optional[int] = ...) -> None: ...
|
|
377
|
+
|
|
378
|
+
class SysWorkState(_message.Message):
|
|
379
|
+
__slots__ = ["chargeState", "cmHash", "deviceState", "pathHash"]
|
|
380
|
+
CHARGESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
381
|
+
CMHASH_FIELD_NUMBER: _ClassVar[int]
|
|
382
|
+
DEVICESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
383
|
+
PATHHASH_FIELD_NUMBER: _ClassVar[int]
|
|
384
|
+
chargeState: int
|
|
385
|
+
cmHash: int
|
|
386
|
+
deviceState: int
|
|
387
|
+
pathHash: int
|
|
388
|
+
def __init__(self, deviceState: _Optional[int] = ..., chargeState: _Optional[int] = ..., cmHash: _Optional[int] = ..., pathHash: _Optional[int] = ...) -> None: ...
|
|
389
|
+
|
|
390
|
+
class TimeCtrlLight(_message.Message):
|
|
391
|
+
__slots__ = ["action", "enable", "end_hour", "end_min", "operate", "start_hour", "start_min"]
|
|
392
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
393
|
+
ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
394
|
+
END_HOUR_FIELD_NUMBER: _ClassVar[int]
|
|
395
|
+
END_MIN_FIELD_NUMBER: _ClassVar[int]
|
|
396
|
+
OPERATE_FIELD_NUMBER: _ClassVar[int]
|
|
397
|
+
START_HOUR_FIELD_NUMBER: _ClassVar[int]
|
|
398
|
+
START_MIN_FIELD_NUMBER: _ClassVar[int]
|
|
399
|
+
action: int
|
|
400
|
+
enable: int
|
|
401
|
+
end_hour: int
|
|
402
|
+
end_min: int
|
|
403
|
+
operate: int
|
|
404
|
+
start_hour: int
|
|
405
|
+
start_min: int
|
|
406
|
+
def __init__(self, operate: _Optional[int] = ..., enable: _Optional[int] = ..., start_hour: _Optional[int] = ..., start_min: _Optional[int] = ..., end_hour: _Optional[int] = ..., end_min: _Optional[int] = ..., action: _Optional[int] = ...) -> None: ...
|
|
407
|
+
|
|
408
|
+
class collector_status_t(_message.Message):
|
|
409
|
+
__slots__ = ["collector_installation_status"]
|
|
410
|
+
COLLECTOR_INSTALLATION_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
411
|
+
collector_installation_status: int
|
|
412
|
+
def __init__(self, collector_installation_status: _Optional[int] = ...) -> None: ...
|
|
413
|
+
|
|
414
|
+
class device_fw_info(_message.Message):
|
|
415
|
+
__slots__ = ["mod", "result", "version"]
|
|
416
|
+
MOD_FIELD_NUMBER: _ClassVar[int]
|
|
417
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
418
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
419
|
+
mod: _containers.RepeatedCompositeFieldContainer[mod_fw_info]
|
|
420
|
+
result: int
|
|
421
|
+
version: str
|
|
422
|
+
def __init__(self, result: _Optional[int] = ..., version: _Optional[str] = ..., mod: _Optional[_Iterable[_Union[mod_fw_info, _Mapping]]] = ...) -> None: ...
|
|
423
|
+
|
|
424
|
+
class device_product_type_info_t(_message.Message):
|
|
425
|
+
__slots__ = ["main_product_type", "result", "sub_product_type"]
|
|
426
|
+
MAIN_PRODUCT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
427
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
428
|
+
SUB_PRODUCT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
429
|
+
main_product_type: str
|
|
430
|
+
result: int
|
|
431
|
+
sub_product_type: str
|
|
432
|
+
def __init__(self, result: _Optional[int] = ..., main_product_type: _Optional[str] = ..., sub_product_type: _Optional[str] = ...) -> None: ...
|
|
433
|
+
|
|
434
|
+
class lock_state_t(_message.Message):
|
|
435
|
+
__slots__ = ["lock_state"]
|
|
436
|
+
LOCK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
437
|
+
lock_state: int
|
|
438
|
+
def __init__(self, lock_state: _Optional[int] = ...) -> None: ...
|
|
439
|
+
|
|
440
|
+
class mCtrlSimulationCmdData(_message.Message):
|
|
441
|
+
__slots__ = ["param_id", "param_value", "subCmd"]
|
|
442
|
+
PARAM_ID_FIELD_NUMBER: _ClassVar[int]
|
|
443
|
+
PARAM_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
444
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
445
|
+
param_id: int
|
|
446
|
+
param_value: _containers.RepeatedScalarFieldContainer[int]
|
|
447
|
+
subCmd: int
|
|
448
|
+
def __init__(self, subCmd: _Optional[int] = ..., param_id: _Optional[int] = ..., param_value: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
449
|
+
|
|
450
|
+
class mod_fw_info(_message.Message):
|
|
451
|
+
__slots__ = ["identify", "type", "version"]
|
|
452
|
+
IDENTIFY_FIELD_NUMBER: _ClassVar[int]
|
|
453
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
454
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
455
|
+
identify: str
|
|
456
|
+
type: int
|
|
457
|
+
version: str
|
|
458
|
+
def __init__(self, type: _Optional[int] = ..., identify: _Optional[str] = ..., version: _Optional[str] = ...) -> None: ...
|
|
459
|
+
|
|
460
|
+
class mow_to_app_info_t(_message.Message):
|
|
461
|
+
__slots__ = ["cmd", "mow_data", "type"]
|
|
462
|
+
CMD_FIELD_NUMBER: _ClassVar[int]
|
|
463
|
+
MOW_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
464
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
465
|
+
cmd: int
|
|
466
|
+
mow_data: _containers.RepeatedScalarFieldContainer[int]
|
|
467
|
+
type: int
|
|
468
|
+
def __init__(self, type: _Optional[int] = ..., cmd: _Optional[int] = ..., mow_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
469
|
+
|
|
470
|
+
class mow_to_app_qctools_info_t(_message.Message):
|
|
471
|
+
__slots__ = ["result", "result_details", "timeOfDuration", "type"]
|
|
472
|
+
EXCEPT_FIELD_NUMBER: _ClassVar[int]
|
|
473
|
+
RESULT_DETAILS_FIELD_NUMBER: _ClassVar[int]
|
|
474
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
475
|
+
TIMEOFDURATION_FIELD_NUMBER: _ClassVar[int]
|
|
476
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
477
|
+
result: int
|
|
478
|
+
result_details: str
|
|
479
|
+
timeOfDuration: int
|
|
480
|
+
type: QCAppTestId
|
|
481
|
+
def __init__(self, type: _Optional[_Union[QCAppTestId, str]] = ..., timeOfDuration: _Optional[int] = ..., result: _Optional[int] = ..., result_details: _Optional[str] = ..., **kwargs) -> None: ...
|
|
482
|
+
|
|
483
|
+
class report_info_cfg(_message.Message):
|
|
484
|
+
__slots__ = ["act", "count", "no_change_period", "period", "sub", "timeout"]
|
|
485
|
+
ACT_FIELD_NUMBER: _ClassVar[int]
|
|
486
|
+
COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
487
|
+
NO_CHANGE_PERIOD_FIELD_NUMBER: _ClassVar[int]
|
|
488
|
+
PERIOD_FIELD_NUMBER: _ClassVar[int]
|
|
489
|
+
SUB_FIELD_NUMBER: _ClassVar[int]
|
|
490
|
+
TIMEOUT_FIELD_NUMBER: _ClassVar[int]
|
|
491
|
+
act: rpt_act
|
|
492
|
+
count: int
|
|
493
|
+
no_change_period: int
|
|
494
|
+
period: int
|
|
495
|
+
sub: _containers.RepeatedScalarFieldContainer[rpt_info_type]
|
|
496
|
+
timeout: int
|
|
497
|
+
def __init__(self, act: _Optional[_Union[rpt_act, str]] = ..., timeout: _Optional[int] = ..., period: _Optional[int] = ..., no_change_period: _Optional[int] = ..., count: _Optional[int] = ..., sub: _Optional[_Iterable[_Union[rpt_info_type, str]]] = ...) -> None: ...
|
|
498
|
+
|
|
499
|
+
class report_info_data(_message.Message):
|
|
500
|
+
__slots__ = ["connect", "dev", "fw_info", "locations", "maintain", "rtk", "vio_to_app_info", "vision_point_info", "vision_statistic_info", "work"]
|
|
501
|
+
CONNECT_FIELD_NUMBER: _ClassVar[int]
|
|
502
|
+
DEV_FIELD_NUMBER: _ClassVar[int]
|
|
503
|
+
FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
504
|
+
LOCATIONS_FIELD_NUMBER: _ClassVar[int]
|
|
505
|
+
MAINTAIN_FIELD_NUMBER: _ClassVar[int]
|
|
506
|
+
RTK_FIELD_NUMBER: _ClassVar[int]
|
|
507
|
+
VIO_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
508
|
+
VISION_POINT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
509
|
+
VISION_STATISTIC_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
510
|
+
WORK_FIELD_NUMBER: _ClassVar[int]
|
|
511
|
+
connect: rpt_connect_status
|
|
512
|
+
dev: rpt_dev_status
|
|
513
|
+
fw_info: device_fw_info
|
|
514
|
+
locations: _containers.RepeatedCompositeFieldContainer[rpt_dev_location]
|
|
515
|
+
maintain: rpt_maintain
|
|
516
|
+
rtk: rpt_rtk
|
|
517
|
+
vio_to_app_info: vio_to_app_info_msg
|
|
518
|
+
vision_point_info: _containers.RepeatedCompositeFieldContainer[vision_point_info_msg]
|
|
519
|
+
vision_statistic_info: vision_statistic_info_msg
|
|
520
|
+
work: rpt_work
|
|
521
|
+
def __init__(self, connect: _Optional[_Union[rpt_connect_status, _Mapping]] = ..., dev: _Optional[_Union[rpt_dev_status, _Mapping]] = ..., rtk: _Optional[_Union[rpt_rtk, _Mapping]] = ..., locations: _Optional[_Iterable[_Union[rpt_dev_location, _Mapping]]] = ..., work: _Optional[_Union[rpt_work, _Mapping]] = ..., fw_info: _Optional[_Union[device_fw_info, _Mapping]] = ..., maintain: _Optional[_Union[rpt_maintain, _Mapping]] = ..., vision_point_info: _Optional[_Iterable[_Union[vision_point_info_msg, _Mapping]]] = ..., vio_to_app_info: _Optional[_Union[vio_to_app_info_msg, _Mapping]] = ..., vision_statistic_info: _Optional[_Union[vision_statistic_info_msg, _Mapping]] = ...) -> None: ...
|
|
522
|
+
|
|
523
|
+
class rpt_connect_status(_message.Message):
|
|
524
|
+
__slots__ = ["ble_rssi", "connect_type", "link_type", "mnet_inet", "mnet_rssi", "used_net", "wifi_rssi"]
|
|
525
|
+
BLE_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
526
|
+
CONNECT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
527
|
+
LINK_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
528
|
+
MNET_INET_FIELD_NUMBER: _ClassVar[int]
|
|
529
|
+
MNET_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
530
|
+
USED_NET_FIELD_NUMBER: _ClassVar[int]
|
|
531
|
+
WIFI_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
532
|
+
ble_rssi: int
|
|
533
|
+
connect_type: int
|
|
534
|
+
link_type: int
|
|
535
|
+
mnet_inet: int
|
|
536
|
+
mnet_rssi: int
|
|
537
|
+
used_net: net_used_type
|
|
538
|
+
wifi_rssi: int
|
|
539
|
+
def __init__(self, connect_type: _Optional[int] = ..., ble_rssi: _Optional[int] = ..., wifi_rssi: _Optional[int] = ..., link_type: _Optional[int] = ..., mnet_rssi: _Optional[int] = ..., mnet_inet: _Optional[int] = ..., used_net: _Optional[_Union[net_used_type, str]] = ...) -> None: ...
|
|
540
|
+
|
|
541
|
+
class rpt_dev_location(_message.Message):
|
|
542
|
+
__slots__ = ["bol_hash", "pos_type", "real_pos_x", "real_pos_y", "real_toward", "zone_hash"]
|
|
543
|
+
BOL_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
544
|
+
POS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
545
|
+
REAL_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
546
|
+
REAL_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
547
|
+
REAL_TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
548
|
+
ZONE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
549
|
+
bol_hash: int
|
|
550
|
+
pos_type: int
|
|
551
|
+
real_pos_x: int
|
|
552
|
+
real_pos_y: int
|
|
553
|
+
real_toward: int
|
|
554
|
+
zone_hash: int
|
|
555
|
+
def __init__(self, real_pos_x: _Optional[int] = ..., real_pos_y: _Optional[int] = ..., real_toward: _Optional[int] = ..., pos_type: _Optional[int] = ..., zone_hash: _Optional[int] = ..., bol_hash: _Optional[int] = ...) -> None: ...
|
|
556
|
+
|
|
557
|
+
class rpt_dev_status(_message.Message):
|
|
558
|
+
__slots__ = ["battery_val", "charge_state", "collector_status", "last_status", "lock_state", "mnet_info", "sensor_status", "sys_status", "sys_time_stamp", "vio_survival_info", "vslam_status"]
|
|
559
|
+
BATTERY_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
560
|
+
CHARGE_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
561
|
+
COLLECTOR_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
562
|
+
LAST_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
563
|
+
LOCK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
564
|
+
MNET_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
565
|
+
SENSOR_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
566
|
+
SYS_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
567
|
+
SYS_TIME_STAMP_FIELD_NUMBER: _ClassVar[int]
|
|
568
|
+
VIO_SURVIVAL_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
569
|
+
VSLAM_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
570
|
+
battery_val: int
|
|
571
|
+
charge_state: int
|
|
572
|
+
collector_status: collector_status_t
|
|
573
|
+
last_status: int
|
|
574
|
+
lock_state: lock_state_t
|
|
575
|
+
mnet_info: _dev_net_pb2.MnetInfo
|
|
576
|
+
sensor_status: int
|
|
577
|
+
sys_status: int
|
|
578
|
+
sys_time_stamp: int
|
|
579
|
+
vio_survival_info: vio_survival_info_t
|
|
580
|
+
vslam_status: int
|
|
581
|
+
def __init__(self, sys_status: _Optional[int] = ..., charge_state: _Optional[int] = ..., battery_val: _Optional[int] = ..., sensor_status: _Optional[int] = ..., last_status: _Optional[int] = ..., sys_time_stamp: _Optional[int] = ..., vslam_status: _Optional[int] = ..., mnet_info: _Optional[_Union[_dev_net_pb2.MnetInfo, _Mapping]] = ..., vio_survival_info: _Optional[_Union[vio_survival_info_t, _Mapping]] = ..., collector_status: _Optional[_Union[collector_status_t, _Mapping]] = ..., lock_state: _Optional[_Union[lock_state_t, _Mapping]] = ...) -> None: ...
|
|
582
|
+
|
|
583
|
+
class rpt_lora(_message.Message):
|
|
584
|
+
__slots__ = ["lora_connection_status", "pair_code_channel", "pair_code_locid", "pair_code_netid", "pair_code_scan"]
|
|
585
|
+
LORA_CONNECTION_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
586
|
+
PAIR_CODE_CHANNEL_FIELD_NUMBER: _ClassVar[int]
|
|
587
|
+
PAIR_CODE_LOCID_FIELD_NUMBER: _ClassVar[int]
|
|
588
|
+
PAIR_CODE_NETID_FIELD_NUMBER: _ClassVar[int]
|
|
589
|
+
PAIR_CODE_SCAN_FIELD_NUMBER: _ClassVar[int]
|
|
590
|
+
lora_connection_status: int
|
|
591
|
+
pair_code_channel: int
|
|
592
|
+
pair_code_locid: int
|
|
593
|
+
pair_code_netid: int
|
|
594
|
+
pair_code_scan: int
|
|
595
|
+
def __init__(self, pair_code_scan: _Optional[int] = ..., pair_code_channel: _Optional[int] = ..., pair_code_locid: _Optional[int] = ..., pair_code_netid: _Optional[int] = ..., lora_connection_status: _Optional[int] = ...) -> None: ...
|
|
596
|
+
|
|
597
|
+
class rpt_maintain(_message.Message):
|
|
598
|
+
__slots__ = ["bat_cycles", "mileage", "work_time"]
|
|
599
|
+
BAT_CYCLES_FIELD_NUMBER: _ClassVar[int]
|
|
600
|
+
MILEAGE_FIELD_NUMBER: _ClassVar[int]
|
|
601
|
+
WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
602
|
+
bat_cycles: int
|
|
603
|
+
mileage: int
|
|
604
|
+
work_time: int
|
|
605
|
+
def __init__(self, mileage: _Optional[int] = ..., work_time: _Optional[int] = ..., bat_cycles: _Optional[int] = ...) -> None: ...
|
|
606
|
+
|
|
607
|
+
class rpt_rtk(_message.Message):
|
|
608
|
+
__slots__ = ["age", "co_view_stars", "dis_status", "gps_stars", "l2_stars", "lat_std", "lon_std", "lora_info", "pos_level", "reset", "status", "top4_total_mean"]
|
|
609
|
+
AGE_FIELD_NUMBER: _ClassVar[int]
|
|
610
|
+
CO_VIEW_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
611
|
+
DIS_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
612
|
+
GPS_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
613
|
+
L2_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
614
|
+
LAT_STD_FIELD_NUMBER: _ClassVar[int]
|
|
615
|
+
LON_STD_FIELD_NUMBER: _ClassVar[int]
|
|
616
|
+
LORA_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
617
|
+
POS_LEVEL_FIELD_NUMBER: _ClassVar[int]
|
|
618
|
+
RESET_FIELD_NUMBER: _ClassVar[int]
|
|
619
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
620
|
+
TOP4_TOTAL_MEAN_FIELD_NUMBER: _ClassVar[int]
|
|
621
|
+
age: int
|
|
622
|
+
co_view_stars: int
|
|
623
|
+
dis_status: int
|
|
624
|
+
gps_stars: int
|
|
625
|
+
l2_stars: int
|
|
626
|
+
lat_std: int
|
|
627
|
+
lon_std: int
|
|
628
|
+
lora_info: rpt_lora
|
|
629
|
+
pos_level: int
|
|
630
|
+
reset: int
|
|
631
|
+
status: int
|
|
632
|
+
top4_total_mean: int
|
|
633
|
+
def __init__(self, status: _Optional[int] = ..., pos_level: _Optional[int] = ..., gps_stars: _Optional[int] = ..., age: _Optional[int] = ..., lat_std: _Optional[int] = ..., lon_std: _Optional[int] = ..., l2_stars: _Optional[int] = ..., dis_status: _Optional[int] = ..., top4_total_mean: _Optional[int] = ..., co_view_stars: _Optional[int] = ..., reset: _Optional[int] = ..., lora_info: _Optional[_Union[rpt_lora, _Mapping]] = ...) -> None: ...
|
|
634
|
+
|
|
635
|
+
class rpt_work(_message.Message):
|
|
636
|
+
__slots__ = ["area", "bp_hash", "bp_info", "bp_pos_x", "bp_pos_y", "init_cfg_hash", "knife_height", "man_run_speed", "nav_edit_status", "nav_run_mode", "path_hash", "path_pos_x", "path_pos_y", "plan", "progress", "real_path_num", "test_mode_status", "ub_ecode_hash", "ub_path_hash", "ub_zone_hash"]
|
|
637
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
638
|
+
BP_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
639
|
+
BP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
640
|
+
BP_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
641
|
+
BP_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
642
|
+
INIT_CFG_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
643
|
+
KNIFE_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
644
|
+
MAN_RUN_SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
645
|
+
NAV_EDIT_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
646
|
+
NAV_RUN_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
647
|
+
PATH_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
648
|
+
PATH_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
649
|
+
PATH_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
650
|
+
PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
651
|
+
PROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
652
|
+
REAL_PATH_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
653
|
+
TEST_MODE_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
654
|
+
UB_ECODE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
655
|
+
UB_PATH_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
656
|
+
UB_ZONE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
657
|
+
area: int
|
|
658
|
+
bp_hash: int
|
|
659
|
+
bp_info: int
|
|
660
|
+
bp_pos_x: int
|
|
661
|
+
bp_pos_y: int
|
|
662
|
+
init_cfg_hash: int
|
|
663
|
+
knife_height: int
|
|
664
|
+
man_run_speed: int
|
|
665
|
+
nav_edit_status: int
|
|
666
|
+
nav_run_mode: int
|
|
667
|
+
path_hash: int
|
|
668
|
+
path_pos_x: int
|
|
669
|
+
path_pos_y: int
|
|
670
|
+
plan: int
|
|
671
|
+
progress: int
|
|
672
|
+
real_path_num: int
|
|
673
|
+
test_mode_status: int
|
|
674
|
+
ub_ecode_hash: int
|
|
675
|
+
ub_path_hash: int
|
|
676
|
+
ub_zone_hash: int
|
|
677
|
+
def __init__(self, plan: _Optional[int] = ..., path_hash: _Optional[int] = ..., progress: _Optional[int] = ..., area: _Optional[int] = ..., bp_info: _Optional[int] = ..., bp_hash: _Optional[int] = ..., bp_pos_x: _Optional[int] = ..., bp_pos_y: _Optional[int] = ..., real_path_num: _Optional[int] = ..., path_pos_x: _Optional[int] = ..., path_pos_y: _Optional[int] = ..., ub_zone_hash: _Optional[int] = ..., ub_path_hash: _Optional[int] = ..., init_cfg_hash: _Optional[int] = ..., ub_ecode_hash: _Optional[int] = ..., nav_run_mode: _Optional[int] = ..., test_mode_status: _Optional[int] = ..., man_run_speed: _Optional[int] = ..., nav_edit_status: _Optional[int] = ..., knife_height: _Optional[int] = ...) -> None: ...
|
|
678
|
+
|
|
679
|
+
class systemRapidStateTunnel_msg(_message.Message):
|
|
680
|
+
__slots__ = ["rapid_state_data", "vio_to_app_info", "vision_point_info", "vision_statistic_info"]
|
|
681
|
+
RAPID_STATE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
682
|
+
VIO_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
683
|
+
VISION_POINT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
684
|
+
VISION_STATISTIC_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
685
|
+
rapid_state_data: _containers.RepeatedScalarFieldContainer[int]
|
|
686
|
+
vio_to_app_info: vio_to_app_info_msg
|
|
687
|
+
vision_point_info: _containers.RepeatedCompositeFieldContainer[vision_point_info_msg]
|
|
688
|
+
vision_statistic_info: vision_statistic_info_msg
|
|
689
|
+
def __init__(self, rapid_state_data: _Optional[_Iterable[int]] = ..., vision_point_info: _Optional[_Iterable[_Union[vision_point_info_msg, _Mapping]]] = ..., vio_to_app_info: _Optional[_Union[vio_to_app_info_msg, _Mapping]] = ..., vision_statistic_info: _Optional[_Union[vision_statistic_info_msg, _Mapping]] = ...) -> None: ...
|
|
690
|
+
|
|
691
|
+
class systemTardStateTunnel_msg(_message.Message):
|
|
692
|
+
__slots__ = ["tard_state_data"]
|
|
693
|
+
TARD_STATE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
694
|
+
tard_state_data: _containers.RepeatedScalarFieldContainer[int]
|
|
695
|
+
def __init__(self, tard_state_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
696
|
+
|
|
697
|
+
class systemTmpCycleTx_msg(_message.Message):
|
|
698
|
+
__slots__ = ["cycle_tx_data"]
|
|
699
|
+
CYCLE_TX_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
700
|
+
cycle_tx_data: _containers.RepeatedScalarFieldContainer[int]
|
|
701
|
+
def __init__(self, cycle_tx_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
702
|
+
|
|
703
|
+
class systemUpdateBuf_msg(_message.Message):
|
|
704
|
+
__slots__ = ["update_buf_data"]
|
|
705
|
+
UPDATE_BUF_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
706
|
+
update_buf_data: _containers.RepeatedScalarFieldContainer[int]
|
|
707
|
+
def __init__(self, update_buf_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
708
|
+
|
|
709
|
+
class vio_survival_info_t(_message.Message):
|
|
710
|
+
__slots__ = ["vio_survival_distance"]
|
|
711
|
+
VIO_SURVIVAL_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
712
|
+
vio_survival_distance: float
|
|
713
|
+
def __init__(self, vio_survival_distance: _Optional[float] = ...) -> None: ...
|
|
714
|
+
|
|
715
|
+
class vio_to_app_info_msg(_message.Message):
|
|
716
|
+
__slots__ = ["brightness", "detect_feature_num", "heading", "track_feature_num", "vio_state", "x", "y"]
|
|
717
|
+
BRIGHTNESS_FIELD_NUMBER: _ClassVar[int]
|
|
718
|
+
DETECT_FEATURE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
719
|
+
HEADING_FIELD_NUMBER: _ClassVar[int]
|
|
720
|
+
TRACK_FEATURE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
721
|
+
VIO_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
722
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
723
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
724
|
+
brightness: int
|
|
725
|
+
detect_feature_num: int
|
|
726
|
+
heading: float
|
|
727
|
+
track_feature_num: int
|
|
728
|
+
vio_state: int
|
|
729
|
+
x: float
|
|
730
|
+
y: float
|
|
731
|
+
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., heading: _Optional[float] = ..., vio_state: _Optional[int] = ..., brightness: _Optional[int] = ..., detect_feature_num: _Optional[int] = ..., track_feature_num: _Optional[int] = ...) -> None: ...
|
|
732
|
+
|
|
733
|
+
class vision_point_info_msg(_message.Message):
|
|
734
|
+
__slots__ = ["lable", "num", "vision_point"]
|
|
735
|
+
LABLE_FIELD_NUMBER: _ClassVar[int]
|
|
736
|
+
NUM_FIELD_NUMBER: _ClassVar[int]
|
|
737
|
+
VISION_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
738
|
+
lable: int
|
|
739
|
+
num: int
|
|
740
|
+
vision_point: _containers.RepeatedCompositeFieldContainer[vision_point_msg]
|
|
741
|
+
def __init__(self, lable: _Optional[int] = ..., num: _Optional[int] = ..., vision_point: _Optional[_Iterable[_Union[vision_point_msg, _Mapping]]] = ...) -> None: ...
|
|
742
|
+
|
|
743
|
+
class vision_point_msg(_message.Message):
|
|
744
|
+
__slots__ = ["x", "y", "z"]
|
|
745
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
746
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
747
|
+
Z_FIELD_NUMBER: _ClassVar[int]
|
|
748
|
+
x: float
|
|
749
|
+
y: float
|
|
750
|
+
z: float
|
|
751
|
+
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., z: _Optional[float] = ...) -> None: ...
|
|
752
|
+
|
|
753
|
+
class vision_statistic_info_msg(_message.Message):
|
|
754
|
+
__slots__ = ["num", "timestamp", "vision_statistics"]
|
|
755
|
+
NUM_FIELD_NUMBER: _ClassVar[int]
|
|
756
|
+
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
757
|
+
VISION_STATISTICS_FIELD_NUMBER: _ClassVar[int]
|
|
758
|
+
num: int
|
|
759
|
+
timestamp: float
|
|
760
|
+
vision_statistics: _containers.RepeatedCompositeFieldContainer[vision_statistic_msg]
|
|
761
|
+
def __init__(self, timestamp: _Optional[float] = ..., num: _Optional[int] = ..., vision_statistics: _Optional[_Iterable[_Union[vision_statistic_msg, _Mapping]]] = ...) -> None: ...
|
|
762
|
+
|
|
763
|
+
class vision_statistic_msg(_message.Message):
|
|
764
|
+
__slots__ = ["mean", "var"]
|
|
765
|
+
MEAN_FIELD_NUMBER: _ClassVar[int]
|
|
766
|
+
VAR_FIELD_NUMBER: _ClassVar[int]
|
|
767
|
+
mean: float
|
|
768
|
+
var: float
|
|
769
|
+
def __init__(self, mean: _Optional[float] = ..., var: _Optional[float] = ...) -> None: ...
|
|
770
|
+
|
|
771
|
+
class Operation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
772
|
+
__slots__ = []
|
|
773
|
+
|
|
774
|
+
class OffPartId(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
775
|
+
__slots__ = []
|
|
776
|
+
|
|
777
|
+
class QCAppTestId(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
778
|
+
__slots__ = []
|
|
779
|
+
|
|
780
|
+
class net_used_type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
781
|
+
__slots__ = []
|
|
782
|
+
|
|
783
|
+
class rpt_info_type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
784
|
+
__slots__ = []
|
|
785
|
+
|
|
786
|
+
class rpt_act(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
787
|
+
__slots__ = []
|