pymammotion 0.5.69__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.
- pymammotion/__init__.py +53 -0
- pymammotion/agora/__init__.py +0 -0
- pymammotion/agora/agora_api.py +755 -0
- pymammotion/agora/agora_rtc_capabilities.py +748 -0
- pymammotion/agora/agora_websockets.py +1175 -0
- pymammotion/aliyun/__init__.py +1 -0
- pymammotion/aliyun/client.py +235 -0
- pymammotion/aliyun/cloud_gateway.py +982 -0
- pymammotion/aliyun/model/aep_response.py +21 -0
- pymammotion/aliyun/model/connect_response.py +51 -0
- pymammotion/aliyun/model/dev_by_account_response.py +195 -0
- pymammotion/aliyun/model/login_by_oauth_response.py +64 -0
- pymammotion/aliyun/model/regions_response.py +29 -0
- pymammotion/aliyun/model/session_by_authcode_response.py +19 -0
- pymammotion/aliyun/model/thing_response.py +12 -0
- pymammotion/aliyun/regions.py +62 -0
- pymammotion/aliyun/tea/core.py +297 -0
- pymammotion/aliyun/tmp_constant.py +171 -0
- pymammotion/bluetooth/__init__.py +1 -0
- pymammotion/bluetooth/ble.py +62 -0
- pymammotion/bluetooth/ble_message.py +676 -0
- pymammotion/bluetooth/const.py +27 -0
- pymammotion/bluetooth/data/__init__.py +0 -0
- pymammotion/bluetooth/data/convert.py +25 -0
- pymammotion/bluetooth/data/framectrldata.py +40 -0
- pymammotion/bluetooth/data/notifydata.py +62 -0
- pymammotion/bluetooth/model/__init__.py +0 -0
- pymammotion/bluetooth/model/atomic_integer.py +54 -0
- pymammotion/const.py +13 -0
- pymammotion/data/__init__.py +0 -0
- pymammotion/data/model/__init__.py +8 -0
- pymammotion/data/model/account.py +8 -0
- pymammotion/data/model/device.py +192 -0
- pymammotion/data/model/device_config.py +72 -0
- pymammotion/data/model/device_info.py +60 -0
- pymammotion/data/model/device_limits.py +49 -0
- pymammotion/data/model/enums.py +77 -0
- pymammotion/data/model/errors.py +12 -0
- pymammotion/data/model/events.py +14 -0
- pymammotion/data/model/generate_geojson.py +565 -0
- pymammotion/data/model/generate_route_information.py +26 -0
- pymammotion/data/model/hash_list.py +475 -0
- pymammotion/data/model/location.py +36 -0
- pymammotion/data/model/mowing_modes.py +77 -0
- pymammotion/data/model/rapid_state.py +45 -0
- pymammotion/data/model/raw_data.py +215 -0
- pymammotion/data/model/region_data.py +102 -0
- pymammotion/data/model/report_info.py +182 -0
- pymammotion/data/model/work.py +27 -0
- pymammotion/data/mower_state_manager.py +369 -0
- pymammotion/data/mqtt/__init__.py +1 -0
- pymammotion/data/mqtt/event.py +227 -0
- pymammotion/data/mqtt/mammotion_properties.py +276 -0
- pymammotion/data/mqtt/properties.py +203 -0
- pymammotion/data/mqtt/status.py +57 -0
- pymammotion/event/__init__.py +6 -0
- pymammotion/event/event.py +96 -0
- pymammotion/homeassistant/__init__.py +3 -0
- pymammotion/homeassistant/mower_api.py +514 -0
- pymammotion/homeassistant/rtk_api.py +54 -0
- pymammotion/http/__init__.py +0 -0
- pymammotion/http/encryption.py +220 -0
- pymammotion/http/http.py +673 -0
- pymammotion/http/model/__init__.py +0 -0
- pymammotion/http/model/camera_stream.py +31 -0
- pymammotion/http/model/http.py +249 -0
- pymammotion/http/model/response_factory.py +61 -0
- pymammotion/http/model/rtk.py +16 -0
- pymammotion/mammotion/__init__.py +0 -0
- pymammotion/mammotion/commands/__init__.py +0 -0
- pymammotion/mammotion/commands/abstract_message.py +24 -0
- pymammotion/mammotion/commands/mammotion_command.py +81 -0
- pymammotion/mammotion/commands/messages/__init__.py +0 -0
- pymammotion/mammotion/commands/messages/basestation.py +43 -0
- pymammotion/mammotion/commands/messages/driver.py +122 -0
- pymammotion/mammotion/commands/messages/media.py +87 -0
- pymammotion/mammotion/commands/messages/navigation.py +564 -0
- pymammotion/mammotion/commands/messages/network.py +205 -0
- pymammotion/mammotion/commands/messages/ota.py +38 -0
- pymammotion/mammotion/commands/messages/system.py +330 -0
- pymammotion/mammotion/commands/messages/video.py +33 -0
- pymammotion/mammotion/control/__init__.py +0 -0
- pymammotion/mammotion/control/joystick.py +145 -0
- pymammotion/mammotion/devices/__init__.py +29 -0
- pymammotion/mammotion/devices/base.py +163 -0
- pymammotion/mammotion/devices/mammotion.py +571 -0
- pymammotion/mammotion/devices/mammotion_bluetooth.py +496 -0
- pymammotion/mammotion/devices/mammotion_cloud.py +355 -0
- pymammotion/mammotion/devices/mammotion_mower_ble.py +48 -0
- pymammotion/mammotion/devices/mammotion_mower_cloud.py +39 -0
- pymammotion/mammotion/devices/managers/managers.py +81 -0
- pymammotion/mammotion/devices/mower_device.py +120 -0
- pymammotion/mammotion/devices/mower_manager.py +107 -0
- pymammotion/mammotion/devices/rtk_ble.py +89 -0
- pymammotion/mammotion/devices/rtk_cloud.py +115 -0
- pymammotion/mammotion/devices/rtk_device.py +50 -0
- pymammotion/mammotion/devices/rtk_manager.py +125 -0
- pymammotion/mqtt/__init__.py +6 -0
- pymammotion/mqtt/aliyun_mqtt.py +237 -0
- pymammotion/mqtt/linkkit/__init__.py +5 -0
- pymammotion/mqtt/linkkit/h2client.py +585 -0
- pymammotion/mqtt/linkkit/linkkit.py +3025 -0
- pymammotion/mqtt/mammotion_future.py +26 -0
- pymammotion/mqtt/mammotion_mqtt.py +214 -0
- pymammotion/mqtt/mqtt_models.py +66 -0
- pymammotion/proto/__init__.py +4841 -0
- pymammotion/proto/basestation.proto +51 -0
- pymammotion/proto/basestation_pb2.py +35 -0
- pymammotion/proto/basestation_pb2.pyi +89 -0
- pymammotion/proto/common.proto +7 -0
- pymammotion/proto/common_pb2.py +25 -0
- pymammotion/proto/common_pb2.pyi +13 -0
- pymammotion/proto/dev_net.proto +321 -0
- pymammotion/proto/dev_net_pb2.py +111 -0
- pymammotion/proto/dev_net_pb2.pyi +515 -0
- pymammotion/proto/luba_msg.proto +76 -0
- pymammotion/proto/luba_msg_pb2.py +41 -0
- pymammotion/proto/luba_msg_pb2.pyi +97 -0
- pymammotion/proto/luba_mul.proto +129 -0
- pymammotion/proto/luba_mul_pb2.py +61 -0
- pymammotion/proto/luba_mul_pb2.pyi +178 -0
- pymammotion/proto/mctrl_driver.proto +107 -0
- pymammotion/proto/mctrl_driver_pb2.py +57 -0
- pymammotion/proto/mctrl_driver_pb2.pyi +167 -0
- pymammotion/proto/mctrl_nav.proto +591 -0
- pymammotion/proto/mctrl_nav_pb2.py +136 -0
- pymammotion/proto/mctrl_nav_pb2.pyi +1067 -0
- pymammotion/proto/mctrl_ota.proto +80 -0
- pymammotion/proto/mctrl_ota_pb2.py +45 -0
- pymammotion/proto/mctrl_ota_pb2.pyi +128 -0
- pymammotion/proto/mctrl_pept.proto +34 -0
- pymammotion/proto/mctrl_pept_pb2.py +33 -0
- pymammotion/proto/mctrl_pept_pb2.pyi +58 -0
- pymammotion/proto/mctrl_sys.proto +741 -0
- pymammotion/proto/mctrl_sys_pb2.py +206 -0
- pymammotion/proto/mctrl_sys_pb2.pyi +1213 -0
- pymammotion/proto/message_pool.py +3 -0
- pymammotion/proto/py.typed +0 -0
- pymammotion/py.typed +0 -0
- pymammotion/utility/constant/__init__.py +3 -0
- pymammotion/utility/constant/device_constant.py +315 -0
- pymammotion/utility/conversions.py +5 -0
- pymammotion/utility/datatype_converter.py +124 -0
- pymammotion/utility/device_config.py +755 -0
- pymammotion/utility/device_type.py +489 -0
- pymammotion/utility/map.py +259 -0
- pymammotion/utility/movement.py +18 -0
- pymammotion/utility/mur_mur_hash.py +159 -0
- pymammotion/utility/periodic.py +106 -0
- pymammotion/utility/rocker_util.py +194 -0
- pymammotion-0.5.69.dist-info/METADATA +93 -0
- pymammotion-0.5.69.dist-info/RECORD +154 -0
- pymammotion-0.5.69.dist-info/WHEEL +4 -0
- pymammotion-0.5.69.dist-info/licenses/LICENSE +674 -0
|
@@ -0,0 +1,1213 @@
|
|
|
1
|
+
from pymammotion.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_CHARGE_STATUS: QCAppTestId
|
|
34
|
+
QC_APP_TEST_CNO_REF_STATION: QCAppTestId
|
|
35
|
+
QC_APP_TEST_CNO_ROVER: QCAppTestId
|
|
36
|
+
QC_APP_TEST_COMPLETE_SIGNAL: QCAppTestId
|
|
37
|
+
QC_APP_TEST_HEADLAMP_TEST: QCAppTestId
|
|
38
|
+
QC_APP_TEST_LIFT: QCAppTestId
|
|
39
|
+
QC_APP_TEST_LOCATION_STATE: QCAppTestId
|
|
40
|
+
QC_APP_TEST_LORA_RSSI: QCAppTestId
|
|
41
|
+
QC_APP_TEST_MAX: QCAppTestId
|
|
42
|
+
QC_APP_TEST_PPS_EXTI_COUNT: QCAppTestId
|
|
43
|
+
QC_APP_TEST_RAIN: QCAppTestId
|
|
44
|
+
QC_APP_TEST_REF_STATION_LINK_STATUS: QCAppTestId
|
|
45
|
+
QC_APP_TEST_ROLL_LEFT: QCAppTestId
|
|
46
|
+
QC_APP_TEST_ROLL_RIGHT: QCAppTestId
|
|
47
|
+
QC_APP_TEST_SAFE_KEY: QCAppTestId
|
|
48
|
+
QC_APP_TEST_SATELLITES_COMMON_VIEW: QCAppTestId
|
|
49
|
+
QC_APP_TEST_SATELLITES_REF_STATION_L1: QCAppTestId
|
|
50
|
+
QC_APP_TEST_SATELLITES_REF_STATION_L2: QCAppTestId
|
|
51
|
+
QC_APP_TEST_SATELLITES_ROVER: QCAppTestId
|
|
52
|
+
QC_APP_TEST_STATIC_OBSTACLE_DETECTION: QCAppTestId
|
|
53
|
+
QC_APP_TEST_STOP: QCAppTestId
|
|
54
|
+
QC_APP_TEST_ULTRA0_COVER: QCAppTestId
|
|
55
|
+
QC_APP_TEST_ULTRA1_COVER: QCAppTestId
|
|
56
|
+
QC_APP_TEST_ULTRA2_COVER: QCAppTestId
|
|
57
|
+
QC_APP_TEST_ULTRA_UNCOVER: QCAppTestId
|
|
58
|
+
QC_APP_TEST_UNLOCK: QCAppTestId
|
|
59
|
+
QC_APP_TEST_WIPER_TEST: QCAppTestId
|
|
60
|
+
QC_APP_TEST_X3_SPEAKER: QCAppTestId
|
|
61
|
+
READ: Operation
|
|
62
|
+
RIT_BASESTATION_INFO: rpt_info_type
|
|
63
|
+
RIT_CONNECT: rpt_info_type
|
|
64
|
+
RIT_CUTTER_INFO: rpt_info_type
|
|
65
|
+
RIT_DEV_LOCAL: rpt_info_type
|
|
66
|
+
RIT_DEV_STA: rpt_info_type
|
|
67
|
+
RIT_FW_INFO: rpt_info_type
|
|
68
|
+
RIT_MAINTAIN: rpt_info_type
|
|
69
|
+
RIT_RTK: rpt_info_type
|
|
70
|
+
RIT_VIO: rpt_info_type
|
|
71
|
+
RIT_VISION_POINT: rpt_info_type
|
|
72
|
+
RIT_VISION_STATISTIC: rpt_info_type
|
|
73
|
+
RIT_WORK: rpt_info_type
|
|
74
|
+
RPT_KEEP: rpt_act
|
|
75
|
+
RPT_START: rpt_act
|
|
76
|
+
RPT_STOP: rpt_act
|
|
77
|
+
RS_FAIL_MAGIC: Command_Result
|
|
78
|
+
RS_FAIL_OTA: Command_Result
|
|
79
|
+
RS_FAIL_SLOPE: Command_Result
|
|
80
|
+
RS_OK: Command_Result
|
|
81
|
+
RTK_USED_INTERNET: rtk_used_type
|
|
82
|
+
RTK_USED_LORA: rtk_used_type
|
|
83
|
+
RTK_USED_NRTK: rtk_used_type
|
|
84
|
+
WRITE: Operation
|
|
85
|
+
|
|
86
|
+
class LoraCfgReq(_message.Message):
|
|
87
|
+
__slots__ = ["cfg", "op"]
|
|
88
|
+
CFG_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
cfg: str
|
|
91
|
+
op: int
|
|
92
|
+
def __init__(self, op: _Optional[int] = ..., cfg: _Optional[str] = ...) -> None: ...
|
|
93
|
+
|
|
94
|
+
class LoraCfgRsp(_message.Message):
|
|
95
|
+
__slots__ = ["cfg", "fac_cfg", "op", "result"]
|
|
96
|
+
CFG_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
FAC_CFG_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
cfg: str
|
|
101
|
+
fac_cfg: str
|
|
102
|
+
op: int
|
|
103
|
+
result: int
|
|
104
|
+
def __init__(self, result: _Optional[int] = ..., op: _Optional[int] = ..., cfg: _Optional[str] = ..., fac_cfg: _Optional[str] = ...) -> None: ...
|
|
105
|
+
|
|
106
|
+
class MctlSys(_message.Message):
|
|
107
|
+
__slots__ = ["app_to_dev_get_mqtt_config_msg", "app_to_dev_set_mqtt_rtk_msg", "bidire_comm_cmd", "blade_used_warn_time", "border", "current_cutter_mode", "debug_cfg_read", "debug_cfg_write", "debug_common_report", "debug_enable", "debug_errocode_report", "debug_res_cfg_ability", "dev_to_app_get_mqtt_config_msg", "dev_to_app_set_mqtt_rtk_msg", "device_product_type_info", "job_plan", "mow_to_app_info", "mow_to_app_qctools_info", "plan_job_del", "report_info", "response_set_mode", "set_peripherals", "set_special_mode", "set_work_mode", "simulation_cmd", "systemRapidStateTunnel", "systemTardStateTunnel", "systemTmpCycleTx", "systemUpdateBuf", "to_app_msgbus", "to_app_remote_reset", "to_dev_msgbus", "to_dev_remote_reset", "to_dev_set_sun_time", "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_factor_reset_system", "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_blade_used_time", "todev_reset_blade_used_time_status", "todev_reset_system", "todev_reset_system_status", "todev_time_ctrl_light", "todev_time_zone"]
|
|
108
|
+
APP_TO_DEV_GET_MQTT_CONFIG_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
APP_TO_DEV_SET_MQTT_RTK_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
BIDIRE_COMM_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
BLADE_USED_WARN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
BORDER_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
CURRENT_CUTTER_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
DEBUG_CFG_READ_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
DEBUG_CFG_WRITE_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
DEBUG_COMMON_REPORT_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
DEBUG_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
DEBUG_ERROCODE_REPORT_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
DEBUG_RES_CFG_ABILITY_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
DEVICE_PRODUCT_TYPE_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
DEV_TO_APP_GET_MQTT_CONFIG_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
DEV_TO_APP_SET_MQTT_RTK_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
JOB_PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
MOW_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
MOW_TO_APP_QCTOOLS_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
PLAN_JOB_DEL_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
REPORT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
RESPONSE_SET_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
SET_PERIPHERALS_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
SET_SPECIAL_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
SET_WORK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
SIMULATION_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
SYSTEMRAPIDSTATETUNNEL_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
SYSTEMTARDSTATETUNNEL_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
SYSTEMTMPCYCLETX_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
SYSTEMUPDATEBUF_FIELD_NUMBER: _ClassVar[int]
|
|
137
|
+
TOAPP_BATINFO_FIELD_NUMBER: _ClassVar[int]
|
|
138
|
+
TOAPP_DEV_FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
TOAPP_ERR_CODE_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
TOAPP_LORA_CFG_RSP_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
TOAPP_MOW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
TOAPP_PLAN_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
TOAPP_REPORT_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
TOAPP_UL_FPROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
TOAPP_WORK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
TODEV_DATA_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
TODEV_DELJOBPLAN_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
TODEV_FACTOR_RESET_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
TODEV_GET_DEV_FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
TODEV_JOB_PLAN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
TODEV_KNIFE_CTRL_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
TODEV_LORA_CFG_REQ_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
TODEV_MOW_INFO_UP_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
TODEV_OFF_CHIP_FLASH_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
TODEV_REPORT_CFG_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
TODEV_RESET_BLADE_USED_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
TODEV_RESET_BLADE_USED_TIME_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
TODEV_RESET_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
TODEV_RESET_SYSTEM_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
TODEV_TIME_CTRL_LIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
TODEV_TIME_ZONE_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
TO_APP_MSGBUS_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
TO_APP_REMOTE_RESET_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
TO_DEV_MSGBUS_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
TO_DEV_REMOTE_RESET_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
TO_DEV_SET_SUN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
app_to_dev_get_mqtt_config_msg: app_to_dev_get_mqtt_config_t
|
|
168
|
+
app_to_dev_set_mqtt_rtk_msg: app_to_dev_set_mqtt_rtk_t
|
|
169
|
+
bidire_comm_cmd: SysCommCmd
|
|
170
|
+
blade_used_warn_time: user_set_blade_used_warn_time
|
|
171
|
+
border: SysBorder
|
|
172
|
+
current_cutter_mode: rpt_cutter_rpm
|
|
173
|
+
debug_cfg_read: debug_cfg_read_t
|
|
174
|
+
debug_cfg_write: debug_cfg_write_t
|
|
175
|
+
debug_common_report: debug_common_report_t
|
|
176
|
+
debug_enable: debug_enable_t
|
|
177
|
+
debug_errocode_report: debug_errocode_report_t
|
|
178
|
+
debug_res_cfg_ability: debug_res_cfg_ability_t
|
|
179
|
+
dev_to_app_get_mqtt_config_msg: dev_to_app_get_mqtt_config_t
|
|
180
|
+
dev_to_app_set_mqtt_rtk_msg: dev_to_app_set_mqtt_rtk_t
|
|
181
|
+
device_product_type_info: device_product_type_info_t
|
|
182
|
+
job_plan: SysJobPlan
|
|
183
|
+
mow_to_app_info: mow_to_app_info_t
|
|
184
|
+
mow_to_app_qctools_info: mow_to_app_qctools_info_t
|
|
185
|
+
plan_job_del: int
|
|
186
|
+
report_info: report_info_t
|
|
187
|
+
response_set_mode: response_set_mode_t
|
|
188
|
+
set_peripherals: set_peripherals_t
|
|
189
|
+
set_special_mode: special_mode_t
|
|
190
|
+
set_work_mode: work_mode_t
|
|
191
|
+
simulation_cmd: mCtrlSimulationCmdData
|
|
192
|
+
systemRapidStateTunnel: systemRapidStateTunnel_msg
|
|
193
|
+
systemTardStateTunnel: systemTardStateTunnel_msg
|
|
194
|
+
systemTmpCycleTx: systemTmpCycleTx_msg
|
|
195
|
+
systemUpdateBuf: systemUpdateBuf_msg
|
|
196
|
+
to_app_msgbus: msgbus_pkt
|
|
197
|
+
to_app_remote_reset: remote_reset_rsp_t
|
|
198
|
+
to_dev_msgbus: msgbus_pkt
|
|
199
|
+
to_dev_remote_reset: remote_reset_req_t
|
|
200
|
+
to_dev_set_sun_time: debug_sun_time_t
|
|
201
|
+
toapp_batinfo: SysBatUp
|
|
202
|
+
toapp_dev_fw_info: device_fw_info
|
|
203
|
+
toapp_err_code: SysDevErrCode
|
|
204
|
+
toapp_lora_cfg_rsp: LoraCfgRsp
|
|
205
|
+
toapp_mow_info: SysMowInfo
|
|
206
|
+
toapp_plan_status: SysPlanJobStatus
|
|
207
|
+
toapp_report_data: report_info_data
|
|
208
|
+
toapp_ul_fprogress: SysUploadFileProgress
|
|
209
|
+
toapp_work_state: SysWorkState
|
|
210
|
+
todev_data_time: SysSetDateTime
|
|
211
|
+
todev_deljobplan: SysDelJobPlan
|
|
212
|
+
todev_factor_reset_system: int
|
|
213
|
+
todev_get_dev_fw_info: int
|
|
214
|
+
todev_job_plan_time: SysJobPlanTime
|
|
215
|
+
todev_knife_ctrl: SysKnifeControl
|
|
216
|
+
todev_lora_cfg_req: LoraCfgReq
|
|
217
|
+
todev_mow_info_up: int
|
|
218
|
+
todev_off_chip_flash: SysOffChipFlash
|
|
219
|
+
todev_report_cfg: report_info_cfg
|
|
220
|
+
todev_reset_blade_used_time: int
|
|
221
|
+
todev_reset_blade_used_time_status: SysResetBladeUsedTimeStatus
|
|
222
|
+
todev_reset_system: int
|
|
223
|
+
todev_reset_system_status: SysResetSystemStatus
|
|
224
|
+
todev_time_ctrl_light: TimeCtrlLight
|
|
225
|
+
todev_time_zone: SysSetTimeZone
|
|
226
|
+
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]] = ..., app_to_dev_get_mqtt_config_msg: _Optional[_Union[app_to_dev_get_mqtt_config_t, _Mapping]] = ..., dev_to_app_get_mqtt_config_msg: _Optional[_Union[dev_to_app_get_mqtt_config_t, _Mapping]] = ..., app_to_dev_set_mqtt_rtk_msg: _Optional[_Union[app_to_dev_set_mqtt_rtk_t, _Mapping]] = ..., dev_to_app_set_mqtt_rtk_msg: _Optional[_Union[dev_to_app_set_mqtt_rtk_t, _Mapping]] = ..., todev_reset_blade_used_time: _Optional[int] = ..., todev_reset_blade_used_time_status: _Optional[_Union[SysResetBladeUsedTimeStatus, _Mapping]] = ..., todev_factor_reset_system: _Optional[int] = ..., blade_used_warn_time: _Optional[_Union[user_set_blade_used_warn_time, _Mapping]] = ..., debug_common_report: _Optional[_Union[debug_common_report_t, _Mapping]] = ..., debug_errocode_report: _Optional[_Union[debug_errocode_report_t, _Mapping]] = ..., debug_enable: _Optional[_Union[debug_enable_t, _Mapping]] = ..., debug_cfg_read: _Optional[_Union[debug_cfg_read_t, _Mapping]] = ..., debug_cfg_write: _Optional[_Union[debug_cfg_write_t, _Mapping]] = ..., debug_res_cfg_ability: _Optional[_Union[debug_res_cfg_ability_t, _Mapping]] = ..., to_dev_msgbus: _Optional[_Union[msgbus_pkt, _Mapping]] = ..., to_app_msgbus: _Optional[_Union[msgbus_pkt, _Mapping]] = ..., response_set_mode: _Optional[_Union[response_set_mode_t, _Mapping]] = ..., report_info: _Optional[_Union[report_info_t, _Mapping]] = ..., set_work_mode: _Optional[_Union[work_mode_t, _Mapping]] = ..., set_special_mode: _Optional[_Union[special_mode_t, _Mapping]] = ..., set_peripherals: _Optional[_Union[set_peripherals_t, _Mapping]] = ..., to_dev_set_sun_time: _Optional[_Union[debug_sun_time_t, _Mapping]] = ..., to_dev_remote_reset: _Optional[_Union[remote_reset_req_t, _Mapping]] = ..., to_app_remote_reset: _Optional[_Union[remote_reset_rsp_t, _Mapping]] = ..., current_cutter_mode: _Optional[_Union[rpt_cutter_rpm, _Mapping]] = ...) -> None: ...
|
|
227
|
+
|
|
228
|
+
class QCAppTestConditions(_message.Message):
|
|
229
|
+
__slots__ = ["cond_type", "double_val", "float_val", "int_val", "string_val"]
|
|
230
|
+
COND_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
231
|
+
DOUBLE_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
232
|
+
FLOAT_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
233
|
+
INT_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
234
|
+
STRING_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
235
|
+
cond_type: str
|
|
236
|
+
double_val: float
|
|
237
|
+
float_val: float
|
|
238
|
+
int_val: int
|
|
239
|
+
string_val: str
|
|
240
|
+
def __init__(self, cond_type: _Optional[str] = ..., int_val: _Optional[int] = ..., float_val: _Optional[float] = ..., double_val: _Optional[float] = ..., string_val: _Optional[str] = ...) -> None: ...
|
|
241
|
+
|
|
242
|
+
class QCAppTestExcept(_message.Message):
|
|
243
|
+
__slots__ = ["conditions", "except_type"]
|
|
244
|
+
CONDITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
245
|
+
EXCEPT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
246
|
+
conditions: _containers.RepeatedCompositeFieldContainer[QCAppTestConditions]
|
|
247
|
+
except_type: str
|
|
248
|
+
def __init__(self, except_type: _Optional[str] = ..., conditions: _Optional[_Iterable[_Union[QCAppTestConditions, _Mapping]]] = ...) -> None: ...
|
|
249
|
+
|
|
250
|
+
class SysBatUp(_message.Message):
|
|
251
|
+
__slots__ = ["batVal"]
|
|
252
|
+
BATVAL_FIELD_NUMBER: _ClassVar[int]
|
|
253
|
+
batVal: int
|
|
254
|
+
def __init__(self, batVal: _Optional[int] = ...) -> None: ...
|
|
255
|
+
|
|
256
|
+
class SysBoardType(_message.Message):
|
|
257
|
+
__slots__ = ["boardType"]
|
|
258
|
+
BOARDTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
259
|
+
boardType: int
|
|
260
|
+
def __init__(self, boardType: _Optional[int] = ...) -> None: ...
|
|
261
|
+
|
|
262
|
+
class SysBorder(_message.Message):
|
|
263
|
+
__slots__ = ["borderval"]
|
|
264
|
+
BORDERVAL_FIELD_NUMBER: _ClassVar[int]
|
|
265
|
+
borderval: int
|
|
266
|
+
def __init__(self, borderval: _Optional[int] = ...) -> None: ...
|
|
267
|
+
|
|
268
|
+
class SysCommCmd(_message.Message):
|
|
269
|
+
__slots__ = ["context", "id", "rw"]
|
|
270
|
+
CONTEXT_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
RW_FIELD_NUMBER: _ClassVar[int]
|
|
273
|
+
context: int
|
|
274
|
+
id: int
|
|
275
|
+
rw: int
|
|
276
|
+
def __init__(self, rw: _Optional[int] = ..., id: _Optional[int] = ..., context: _Optional[int] = ...) -> None: ...
|
|
277
|
+
|
|
278
|
+
class SysDelJobPlan(_message.Message):
|
|
279
|
+
__slots__ = ["deviceId", "planId"]
|
|
280
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
281
|
+
PLANID_FIELD_NUMBER: _ClassVar[int]
|
|
282
|
+
deviceId: str
|
|
283
|
+
planId: str
|
|
284
|
+
def __init__(self, deviceId: _Optional[str] = ..., planId: _Optional[str] = ...) -> None: ...
|
|
285
|
+
|
|
286
|
+
class SysDevErrCode(_message.Message):
|
|
287
|
+
__slots__ = ["errorCode"]
|
|
288
|
+
ERRORCODE_FIELD_NUMBER: _ClassVar[int]
|
|
289
|
+
errorCode: int
|
|
290
|
+
def __init__(self, errorCode: _Optional[int] = ...) -> None: ...
|
|
291
|
+
|
|
292
|
+
class SysErrorCode(_message.Message):
|
|
293
|
+
__slots__ = ["code_no"]
|
|
294
|
+
CODE_NO_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
code_no: int
|
|
296
|
+
def __init__(self, code_no: _Optional[int] = ...) -> None: ...
|
|
297
|
+
|
|
298
|
+
class SysJobPlan(_message.Message):
|
|
299
|
+
__slots__ = ["jobId", "jobMode", "knifeHeight", "rainTactics"]
|
|
300
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
301
|
+
JOBMODE_FIELD_NUMBER: _ClassVar[int]
|
|
302
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
303
|
+
RAINTACTICS_FIELD_NUMBER: _ClassVar[int]
|
|
304
|
+
jobId: int
|
|
305
|
+
jobMode: int
|
|
306
|
+
knifeHeight: int
|
|
307
|
+
rainTactics: int
|
|
308
|
+
def __init__(self, jobId: _Optional[int] = ..., jobMode: _Optional[int] = ..., rainTactics: _Optional[int] = ..., knifeHeight: _Optional[int] = ...) -> None: ...
|
|
309
|
+
|
|
310
|
+
class SysJobPlanTime(_message.Message):
|
|
311
|
+
__slots__ = ["end_job_time", "everyDay", "job_plan", "job_plan_enable", "job_plan_mode", "planId", "start_job_time", "timeInWeekDay", "time_in_day", "weekDay"]
|
|
312
|
+
END_JOB_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
313
|
+
EVERYDAY_FIELD_NUMBER: _ClassVar[int]
|
|
314
|
+
JOB_PLAN_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
315
|
+
JOB_PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
316
|
+
JOB_PLAN_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
317
|
+
PLANID_FIELD_NUMBER: _ClassVar[int]
|
|
318
|
+
START_JOB_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
319
|
+
TIMEINWEEKDAY_FIELD_NUMBER: _ClassVar[int]
|
|
320
|
+
TIME_IN_DAY_FIELD_NUMBER: _ClassVar[int]
|
|
321
|
+
WEEKDAY_FIELD_NUMBER: _ClassVar[int]
|
|
322
|
+
end_job_time: int
|
|
323
|
+
everyDay: int
|
|
324
|
+
job_plan: SysJobPlan
|
|
325
|
+
job_plan_enable: int
|
|
326
|
+
job_plan_mode: int
|
|
327
|
+
planId: int
|
|
328
|
+
start_job_time: int
|
|
329
|
+
timeInWeekDay: _containers.RepeatedScalarFieldContainer[int]
|
|
330
|
+
time_in_day: int
|
|
331
|
+
weekDay: _containers.RepeatedScalarFieldContainer[int]
|
|
332
|
+
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: ...
|
|
333
|
+
|
|
334
|
+
class SysKnifeControl(_message.Message):
|
|
335
|
+
__slots__ = ["knife_height", "knife_status"]
|
|
336
|
+
KNIFE_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
337
|
+
KNIFE_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
338
|
+
knife_height: int
|
|
339
|
+
knife_status: int
|
|
340
|
+
def __init__(self, knife_status: _Optional[int] = ..., knife_height: _Optional[int] = ...) -> None: ...
|
|
341
|
+
|
|
342
|
+
class SysMowInfo(_message.Message):
|
|
343
|
+
__slots__ = ["RTKstars", "RTKstatus", "batVal", "deviceState", "knifeHeight"]
|
|
344
|
+
BATVAL_FIELD_NUMBER: _ClassVar[int]
|
|
345
|
+
DEVICESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
346
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
347
|
+
RTKSTARS_FIELD_NUMBER: _ClassVar[int]
|
|
348
|
+
RTKSTATUS_FIELD_NUMBER: _ClassVar[int]
|
|
349
|
+
RTKstars: int
|
|
350
|
+
RTKstatus: int
|
|
351
|
+
batVal: int
|
|
352
|
+
deviceState: int
|
|
353
|
+
knifeHeight: int
|
|
354
|
+
def __init__(self, deviceState: _Optional[int] = ..., batVal: _Optional[int] = ..., knifeHeight: _Optional[int] = ..., RTKstatus: _Optional[int] = ..., RTKstars: _Optional[int] = ...) -> None: ...
|
|
355
|
+
|
|
356
|
+
class SysOffChipFlash(_message.Message):
|
|
357
|
+
__slots__ = ["code", "data", "id", "length", "msg", "offset", "op", "start_addr"]
|
|
358
|
+
CODE_FIELD_NUMBER: _ClassVar[int]
|
|
359
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
360
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
361
|
+
LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
362
|
+
MSG_FIELD_NUMBER: _ClassVar[int]
|
|
363
|
+
OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
364
|
+
OP_FIELD_NUMBER: _ClassVar[int]
|
|
365
|
+
START_ADDR_FIELD_NUMBER: _ClassVar[int]
|
|
366
|
+
code: int
|
|
367
|
+
data: bytes
|
|
368
|
+
id: OffPartId
|
|
369
|
+
length: int
|
|
370
|
+
msg: str
|
|
371
|
+
offset: int
|
|
372
|
+
op: Operation
|
|
373
|
+
start_addr: int
|
|
374
|
+
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: ...
|
|
375
|
+
|
|
376
|
+
class SysOptiLineAck(_message.Message):
|
|
377
|
+
__slots__ = ["currentFrame", "responesCmd"]
|
|
378
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
379
|
+
RESPONESCMD_FIELD_NUMBER: _ClassVar[int]
|
|
380
|
+
currentFrame: int
|
|
381
|
+
responesCmd: int
|
|
382
|
+
def __init__(self, responesCmd: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
383
|
+
|
|
384
|
+
class SysPlanJobStatus(_message.Message):
|
|
385
|
+
__slots__ = ["planjob_status"]
|
|
386
|
+
PLANJOB_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
387
|
+
planjob_status: int
|
|
388
|
+
def __init__(self, planjob_status: _Optional[int] = ...) -> None: ...
|
|
389
|
+
|
|
390
|
+
class SysResetBladeUsedTimeStatus(_message.Message):
|
|
391
|
+
__slots__ = ["reset_blade_used_time_status"]
|
|
392
|
+
RESET_BLADE_USED_TIME_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
393
|
+
reset_blade_used_time_status: int
|
|
394
|
+
def __init__(self, reset_blade_used_time_status: _Optional[int] = ...) -> None: ...
|
|
395
|
+
|
|
396
|
+
class SysResetSystemStatus(_message.Message):
|
|
397
|
+
__slots__ = ["reset_staus"]
|
|
398
|
+
RESET_STAUS_FIELD_NUMBER: _ClassVar[int]
|
|
399
|
+
reset_staus: int
|
|
400
|
+
def __init__(self, reset_staus: _Optional[int] = ...) -> None: ...
|
|
401
|
+
|
|
402
|
+
class SysSetDateTime(_message.Message):
|
|
403
|
+
__slots__ = ["Date", "Hours", "Minutes", "Month", "Seconds", "Week", "Year", "daylight", "timeZone"]
|
|
404
|
+
DATE_FIELD_NUMBER: _ClassVar[int]
|
|
405
|
+
DAYLIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
406
|
+
Date: int
|
|
407
|
+
HOURS_FIELD_NUMBER: _ClassVar[int]
|
|
408
|
+
Hours: int
|
|
409
|
+
MINUTES_FIELD_NUMBER: _ClassVar[int]
|
|
410
|
+
MONTH_FIELD_NUMBER: _ClassVar[int]
|
|
411
|
+
Minutes: int
|
|
412
|
+
Month: int
|
|
413
|
+
SECONDS_FIELD_NUMBER: _ClassVar[int]
|
|
414
|
+
Seconds: int
|
|
415
|
+
TIMEZONE_FIELD_NUMBER: _ClassVar[int]
|
|
416
|
+
WEEK_FIELD_NUMBER: _ClassVar[int]
|
|
417
|
+
Week: int
|
|
418
|
+
YEAR_FIELD_NUMBER: _ClassVar[int]
|
|
419
|
+
Year: int
|
|
420
|
+
daylight: int
|
|
421
|
+
timeZone: int
|
|
422
|
+
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: ...
|
|
423
|
+
|
|
424
|
+
class SysSetTimeZone(_message.Message):
|
|
425
|
+
__slots__ = ["timeArea", "timeStamp"]
|
|
426
|
+
TIMEAREA_FIELD_NUMBER: _ClassVar[int]
|
|
427
|
+
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
428
|
+
timeArea: int
|
|
429
|
+
timeStamp: int
|
|
430
|
+
def __init__(self, timeStamp: _Optional[int] = ..., timeArea: _Optional[int] = ...) -> None: ...
|
|
431
|
+
|
|
432
|
+
class SysSwVersion(_message.Message):
|
|
433
|
+
__slots__ = ["boardType", "versionLen"]
|
|
434
|
+
BOARDTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
435
|
+
VERSIONLEN_FIELD_NUMBER: _ClassVar[int]
|
|
436
|
+
boardType: int
|
|
437
|
+
versionLen: int
|
|
438
|
+
def __init__(self, boardType: _Optional[int] = ..., versionLen: _Optional[int] = ...) -> None: ...
|
|
439
|
+
|
|
440
|
+
class SysUploadFileProgress(_message.Message):
|
|
441
|
+
__slots__ = ["bizId", "progress", "result"]
|
|
442
|
+
BIZID_FIELD_NUMBER: _ClassVar[int]
|
|
443
|
+
PROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
444
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
445
|
+
bizId: str
|
|
446
|
+
progress: int
|
|
447
|
+
result: int
|
|
448
|
+
def __init__(self, bizId: _Optional[str] = ..., result: _Optional[int] = ..., progress: _Optional[int] = ...) -> None: ...
|
|
449
|
+
|
|
450
|
+
class SysWorkState(_message.Message):
|
|
451
|
+
__slots__ = ["chargeState", "cmHash", "deviceState", "pathHash"]
|
|
452
|
+
CHARGESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
453
|
+
CMHASH_FIELD_NUMBER: _ClassVar[int]
|
|
454
|
+
DEVICESTATE_FIELD_NUMBER: _ClassVar[int]
|
|
455
|
+
PATHHASH_FIELD_NUMBER: _ClassVar[int]
|
|
456
|
+
chargeState: int
|
|
457
|
+
cmHash: int
|
|
458
|
+
deviceState: int
|
|
459
|
+
pathHash: int
|
|
460
|
+
def __init__(self, deviceState: _Optional[int] = ..., chargeState: _Optional[int] = ..., cmHash: _Optional[int] = ..., pathHash: _Optional[int] = ...) -> None: ...
|
|
461
|
+
|
|
462
|
+
class TimeCtrlLight(_message.Message):
|
|
463
|
+
__slots__ = ["action", "enable", "end_hour", "end_min", "operate", "start_hour", "start_min"]
|
|
464
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
465
|
+
ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
466
|
+
END_HOUR_FIELD_NUMBER: _ClassVar[int]
|
|
467
|
+
END_MIN_FIELD_NUMBER: _ClassVar[int]
|
|
468
|
+
OPERATE_FIELD_NUMBER: _ClassVar[int]
|
|
469
|
+
START_HOUR_FIELD_NUMBER: _ClassVar[int]
|
|
470
|
+
START_MIN_FIELD_NUMBER: _ClassVar[int]
|
|
471
|
+
action: int
|
|
472
|
+
enable: int
|
|
473
|
+
end_hour: int
|
|
474
|
+
end_min: int
|
|
475
|
+
operate: int
|
|
476
|
+
start_hour: int
|
|
477
|
+
start_min: int
|
|
478
|
+
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: ...
|
|
479
|
+
|
|
480
|
+
class app_to_dev_get_mqtt_config_t(_message.Message):
|
|
481
|
+
__slots__ = ["get_mqtt_config"]
|
|
482
|
+
GET_MQTT_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
483
|
+
get_mqtt_config: int
|
|
484
|
+
def __init__(self, get_mqtt_config: _Optional[int] = ...) -> None: ...
|
|
485
|
+
|
|
486
|
+
class app_to_dev_set_mqtt_rtk_t(_message.Message):
|
|
487
|
+
__slots__ = ["set_nrtk_net_mode", "set_rtk_mode", "stop_nrtk_flag"]
|
|
488
|
+
SET_NRTK_NET_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
489
|
+
SET_RTK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
490
|
+
STOP_NRTK_FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
491
|
+
set_nrtk_net_mode: int
|
|
492
|
+
set_rtk_mode: rtk_used_type
|
|
493
|
+
stop_nrtk_flag: int
|
|
494
|
+
def __init__(self, set_rtk_mode: _Optional[_Union[rtk_used_type, str]] = ..., stop_nrtk_flag: _Optional[int] = ..., set_nrtk_net_mode: _Optional[int] = ...) -> None: ...
|
|
495
|
+
|
|
496
|
+
class blade_used(_message.Message):
|
|
497
|
+
__slots__ = ["blade_used_time", "blade_used_warn_time"]
|
|
498
|
+
BLADE_USED_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
499
|
+
BLADE_USED_WARN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
500
|
+
blade_used_time: int
|
|
501
|
+
blade_used_warn_time: int
|
|
502
|
+
def __init__(self, blade_used_time: _Optional[int] = ..., blade_used_warn_time: _Optional[int] = ...) -> None: ...
|
|
503
|
+
|
|
504
|
+
class collector_status_t(_message.Message):
|
|
505
|
+
__slots__ = ["collector_installation_status"]
|
|
506
|
+
COLLECTOR_INSTALLATION_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
507
|
+
collector_installation_status: int
|
|
508
|
+
def __init__(self, collector_installation_status: _Optional[int] = ...) -> None: ...
|
|
509
|
+
|
|
510
|
+
class debug_cfg_read_t(_message.Message):
|
|
511
|
+
__slots__ = ["key", "value"]
|
|
512
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
513
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
514
|
+
key: str
|
|
515
|
+
value: str
|
|
516
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
517
|
+
|
|
518
|
+
class debug_cfg_write_t(_message.Message):
|
|
519
|
+
__slots__ = ["key", "value"]
|
|
520
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
521
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
522
|
+
key: str
|
|
523
|
+
value: str
|
|
524
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
525
|
+
|
|
526
|
+
class debug_common_report_t(_message.Message):
|
|
527
|
+
__slots__ = ["gen_time", "key", "m_name", "value"]
|
|
528
|
+
GEN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
529
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
530
|
+
M_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
531
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
532
|
+
gen_time: int
|
|
533
|
+
key: str
|
|
534
|
+
m_name: str
|
|
535
|
+
value: str
|
|
536
|
+
def __init__(self, m_name: _Optional[str] = ..., key: _Optional[str] = ..., value: _Optional[str] = ..., gen_time: _Optional[int] = ...) -> None: ...
|
|
537
|
+
|
|
538
|
+
class debug_enable_t(_message.Message):
|
|
539
|
+
__slots__ = ["enbale"]
|
|
540
|
+
ENBALE_FIELD_NUMBER: _ClassVar[int]
|
|
541
|
+
enbale: int
|
|
542
|
+
def __init__(self, enbale: _Optional[int] = ...) -> None: ...
|
|
543
|
+
|
|
544
|
+
class debug_errocode_report_t(_message.Message):
|
|
545
|
+
__slots__ = ["code", "gen_time", "mname", "value"]
|
|
546
|
+
CODE_FIELD_NUMBER: _ClassVar[int]
|
|
547
|
+
GEN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
548
|
+
MNAME_FIELD_NUMBER: _ClassVar[int]
|
|
549
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
550
|
+
code: int
|
|
551
|
+
gen_time: int
|
|
552
|
+
mname: str
|
|
553
|
+
value: str
|
|
554
|
+
def __init__(self, code: _Optional[int] = ..., mname: _Optional[str] = ..., value: _Optional[str] = ..., gen_time: _Optional[int] = ...) -> None: ...
|
|
555
|
+
|
|
556
|
+
class debug_res_cfg_ability_t(_message.Message):
|
|
557
|
+
__slots__ = ["cur_key_id", "keys", "total_keys", "value"]
|
|
558
|
+
CUR_KEY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
559
|
+
KEYS_FIELD_NUMBER: _ClassVar[int]
|
|
560
|
+
TOTAL_KEYS_FIELD_NUMBER: _ClassVar[int]
|
|
561
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
562
|
+
cur_key_id: int
|
|
563
|
+
keys: str
|
|
564
|
+
total_keys: int
|
|
565
|
+
value: str
|
|
566
|
+
def __init__(self, total_keys: _Optional[int] = ..., cur_key_id: _Optional[int] = ..., keys: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
567
|
+
|
|
568
|
+
class debug_sun_time_t(_message.Message):
|
|
569
|
+
__slots__ = ["subCmd", "sunRiseTime", "sunSetTime"]
|
|
570
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
571
|
+
SUNRISETIME_FIELD_NUMBER: _ClassVar[int]
|
|
572
|
+
SUNSETTIME_FIELD_NUMBER: _ClassVar[int]
|
|
573
|
+
subCmd: int
|
|
574
|
+
sunRiseTime: int
|
|
575
|
+
sunSetTime: int
|
|
576
|
+
def __init__(self, subCmd: _Optional[int] = ..., sunRiseTime: _Optional[int] = ..., sunSetTime: _Optional[int] = ...) -> None: ...
|
|
577
|
+
|
|
578
|
+
class dev_statue_t(_message.Message):
|
|
579
|
+
__slots__ = ["bat_val", "ble_rssi", "charge_status", "iot_connect_status", "model", "pump_status", "sys_status", "wheel_status", "wifi_available", "wifi_connect_status", "wifi_rssi", "work_mode"]
|
|
580
|
+
BAT_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
581
|
+
BLE_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
582
|
+
CHARGE_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
583
|
+
IOT_CONNECT_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
584
|
+
MODEL_FIELD_NUMBER: _ClassVar[int]
|
|
585
|
+
PUMP_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
586
|
+
SYS_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
587
|
+
WHEEL_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
588
|
+
WIFI_AVAILABLE_FIELD_NUMBER: _ClassVar[int]
|
|
589
|
+
WIFI_CONNECT_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
590
|
+
WIFI_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
591
|
+
WORK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
592
|
+
bat_val: int
|
|
593
|
+
ble_rssi: int
|
|
594
|
+
charge_status: int
|
|
595
|
+
iot_connect_status: int
|
|
596
|
+
model: int
|
|
597
|
+
pump_status: int
|
|
598
|
+
sys_status: int
|
|
599
|
+
wheel_status: int
|
|
600
|
+
wifi_available: int
|
|
601
|
+
wifi_connect_status: int
|
|
602
|
+
wifi_rssi: int
|
|
603
|
+
work_mode: int
|
|
604
|
+
def __init__(self, sys_status: _Optional[int] = ..., charge_status: _Optional[int] = ..., bat_val: _Optional[int] = ..., wheel_status: _Optional[int] = ..., pump_status: _Optional[int] = ..., work_mode: _Optional[int] = ..., model: _Optional[int] = ..., ble_rssi: _Optional[int] = ..., wifi_rssi: _Optional[int] = ..., wifi_connect_status: _Optional[int] = ..., iot_connect_status: _Optional[int] = ..., wifi_available: _Optional[int] = ...) -> None: ...
|
|
605
|
+
|
|
606
|
+
class dev_to_app_get_mqtt_config_t(_message.Message):
|
|
607
|
+
__slots__ = ["rtk_base_num", "rtk_status"]
|
|
608
|
+
RTK_BASE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
609
|
+
RTK_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
610
|
+
rtk_base_num: str
|
|
611
|
+
rtk_status: int
|
|
612
|
+
def __init__(self, rtk_status: _Optional[int] = ..., rtk_base_num: _Optional[str] = ...) -> None: ...
|
|
613
|
+
|
|
614
|
+
class dev_to_app_set_mqtt_rtk_t(_message.Message):
|
|
615
|
+
__slots__ = ["set_rtk_mode_error"]
|
|
616
|
+
SET_RTK_MODE_ERROR_FIELD_NUMBER: _ClassVar[int]
|
|
617
|
+
set_rtk_mode_error: int
|
|
618
|
+
def __init__(self, set_rtk_mode_error: _Optional[int] = ...) -> None: ...
|
|
619
|
+
|
|
620
|
+
class device_fw_info(_message.Message):
|
|
621
|
+
__slots__ = ["mod", "result", "version"]
|
|
622
|
+
MOD_FIELD_NUMBER: _ClassVar[int]
|
|
623
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
624
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
625
|
+
mod: _containers.RepeatedCompositeFieldContainer[mod_fw_info]
|
|
626
|
+
result: int
|
|
627
|
+
version: str
|
|
628
|
+
def __init__(self, result: _Optional[int] = ..., version: _Optional[str] = ..., mod: _Optional[_Iterable[_Union[mod_fw_info, _Mapping]]] = ...) -> None: ...
|
|
629
|
+
|
|
630
|
+
class device_product_type_info_t(_message.Message):
|
|
631
|
+
__slots__ = ["main_product_type", "result", "sub_product_type"]
|
|
632
|
+
MAIN_PRODUCT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
633
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
634
|
+
SUB_PRODUCT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
635
|
+
main_product_type: str
|
|
636
|
+
result: int
|
|
637
|
+
sub_product_type: str
|
|
638
|
+
def __init__(self, result: _Optional[int] = ..., main_product_type: _Optional[str] = ..., sub_product_type: _Optional[str] = ...) -> None: ...
|
|
639
|
+
|
|
640
|
+
class fpv_to_app_info_t(_message.Message):
|
|
641
|
+
__slots__ = ["fpv_flag", "mobile_net_available", "wifi_available"]
|
|
642
|
+
FPV_FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
643
|
+
MOBILE_NET_AVAILABLE_FIELD_NUMBER: _ClassVar[int]
|
|
644
|
+
WIFI_AVAILABLE_FIELD_NUMBER: _ClassVar[int]
|
|
645
|
+
fpv_flag: int
|
|
646
|
+
mobile_net_available: int
|
|
647
|
+
wifi_available: int
|
|
648
|
+
def __init__(self, fpv_flag: _Optional[int] = ..., wifi_available: _Optional[int] = ..., mobile_net_available: _Optional[int] = ...) -> None: ...
|
|
649
|
+
|
|
650
|
+
class lock_state_t(_message.Message):
|
|
651
|
+
__slots__ = ["lock_state"]
|
|
652
|
+
LOCK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
653
|
+
lock_state: int
|
|
654
|
+
def __init__(self, lock_state: _Optional[int] = ...) -> None: ...
|
|
655
|
+
|
|
656
|
+
class mCtrlSimulationCmdData(_message.Message):
|
|
657
|
+
__slots__ = ["param_id", "param_value", "subCmd"]
|
|
658
|
+
PARAM_ID_FIELD_NUMBER: _ClassVar[int]
|
|
659
|
+
PARAM_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
660
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
661
|
+
param_id: int
|
|
662
|
+
param_value: _containers.RepeatedScalarFieldContainer[int]
|
|
663
|
+
subCmd: int
|
|
664
|
+
def __init__(self, subCmd: _Optional[int] = ..., param_id: _Optional[int] = ..., param_value: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
665
|
+
|
|
666
|
+
class mod_fw_info(_message.Message):
|
|
667
|
+
__slots__ = ["identify", "type", "version"]
|
|
668
|
+
IDENTIFY_FIELD_NUMBER: _ClassVar[int]
|
|
669
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
670
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
671
|
+
identify: str
|
|
672
|
+
type: int
|
|
673
|
+
version: str
|
|
674
|
+
def __init__(self, type: _Optional[int] = ..., identify: _Optional[str] = ..., version: _Optional[str] = ...) -> None: ...
|
|
675
|
+
|
|
676
|
+
class mow_to_app_info_t(_message.Message):
|
|
677
|
+
__slots__ = ["cmd", "mow_data", "type"]
|
|
678
|
+
CMD_FIELD_NUMBER: _ClassVar[int]
|
|
679
|
+
MOW_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
680
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
681
|
+
cmd: int
|
|
682
|
+
mow_data: _containers.RepeatedScalarFieldContainer[int]
|
|
683
|
+
type: int
|
|
684
|
+
def __init__(self, type: _Optional[int] = ..., cmd: _Optional[int] = ..., mow_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
685
|
+
|
|
686
|
+
class mow_to_app_qctools_info_t(_message.Message):
|
|
687
|
+
__slots__ = ["result", "result_details", "timeOfDuration", "type"]
|
|
688
|
+
EXCEPT_FIELD_NUMBER: _ClassVar[int]
|
|
689
|
+
RESULT_DETAILS_FIELD_NUMBER: _ClassVar[int]
|
|
690
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
691
|
+
TIMEOFDURATION_FIELD_NUMBER: _ClassVar[int]
|
|
692
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
693
|
+
result: int
|
|
694
|
+
result_details: str
|
|
695
|
+
timeOfDuration: int
|
|
696
|
+
type: QCAppTestId
|
|
697
|
+
def __init__(self, type: _Optional[_Union[QCAppTestId, str]] = ..., timeOfDuration: _Optional[int] = ..., result: _Optional[int] = ..., result_details: _Optional[str] = ..., **kwargs) -> None: ...
|
|
698
|
+
|
|
699
|
+
class mqtt_rtk_connect(_message.Message):
|
|
700
|
+
__slots__ = ["latitude", "longitude", "new_rtk_mode", "nrtk_map_convert_status", "nrtk_net_mode", "rtk_base_num", "rtk_channel", "rtk_switch"]
|
|
701
|
+
LATITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
702
|
+
LONGITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
703
|
+
NEW_RTK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
704
|
+
NRTK_MAP_CONVERT_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
705
|
+
NRTK_NET_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
706
|
+
RTK_BASE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
707
|
+
RTK_CHANNEL_FIELD_NUMBER: _ClassVar[int]
|
|
708
|
+
RTK_SWITCH_FIELD_NUMBER: _ClassVar[int]
|
|
709
|
+
latitude: float
|
|
710
|
+
longitude: float
|
|
711
|
+
new_rtk_mode: int
|
|
712
|
+
nrtk_map_convert_status: int
|
|
713
|
+
nrtk_net_mode: int
|
|
714
|
+
rtk_base_num: str
|
|
715
|
+
rtk_channel: int
|
|
716
|
+
rtk_switch: rtk_used_type
|
|
717
|
+
def __init__(self, rtk_switch: _Optional[_Union[rtk_used_type, str]] = ..., rtk_channel: _Optional[int] = ..., rtk_base_num: _Optional[str] = ..., latitude: _Optional[float] = ..., longitude: _Optional[float] = ..., nrtk_map_convert_status: _Optional[int] = ..., nrtk_net_mode: _Optional[int] = ..., new_rtk_mode: _Optional[int] = ...) -> None: ...
|
|
718
|
+
|
|
719
|
+
class msgbus_pkt(_message.Message):
|
|
720
|
+
__slots__ = ["ctrl", "data", "dataLength", "flag", "recvDeviceId", "sendDeviceId", "seqs", "type", "typeCommand"]
|
|
721
|
+
CTRL_FIELD_NUMBER: _ClassVar[int]
|
|
722
|
+
DATALENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
723
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
724
|
+
FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
725
|
+
RECVDEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
726
|
+
SENDDEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
727
|
+
SEQS_FIELD_NUMBER: _ClassVar[int]
|
|
728
|
+
TYPECOMMAND_FIELD_NUMBER: _ClassVar[int]
|
|
729
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
730
|
+
ctrl: int
|
|
731
|
+
data: str
|
|
732
|
+
dataLength: int
|
|
733
|
+
flag: int
|
|
734
|
+
recvDeviceId: int
|
|
735
|
+
sendDeviceId: int
|
|
736
|
+
seqs: int
|
|
737
|
+
type: int
|
|
738
|
+
typeCommand: int
|
|
739
|
+
def __init__(self, type: _Optional[int] = ..., typeCommand: _Optional[int] = ..., recvDeviceId: _Optional[int] = ..., sendDeviceId: _Optional[int] = ..., dataLength: _Optional[int] = ..., data: _Optional[str] = ..., ctrl: _Optional[int] = ..., flag: _Optional[int] = ..., seqs: _Optional[int] = ...) -> None: ...
|
|
740
|
+
|
|
741
|
+
class nav_heading_state_t(_message.Message):
|
|
742
|
+
__slots__ = ["heading_state"]
|
|
743
|
+
HEADING_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
744
|
+
heading_state: int
|
|
745
|
+
def __init__(self, heading_state: _Optional[int] = ...) -> None: ...
|
|
746
|
+
|
|
747
|
+
class net_speed(_message.Message):
|
|
748
|
+
__slots__ = ["download", "upload"]
|
|
749
|
+
DOWNLOAD_FIELD_NUMBER: _ClassVar[int]
|
|
750
|
+
UPLOAD_FIELD_NUMBER: _ClassVar[int]
|
|
751
|
+
download: int
|
|
752
|
+
upload: int
|
|
753
|
+
def __init__(self, download: _Optional[int] = ..., upload: _Optional[int] = ...) -> None: ...
|
|
754
|
+
|
|
755
|
+
class pos_score(_message.Message):
|
|
756
|
+
__slots__ = ["base_level", "base_moved", "base_moving", "base_score", "rover_level", "rover_score"]
|
|
757
|
+
BASE_LEVEL_FIELD_NUMBER: _ClassVar[int]
|
|
758
|
+
BASE_MOVED_FIELD_NUMBER: _ClassVar[int]
|
|
759
|
+
BASE_MOVING_FIELD_NUMBER: _ClassVar[int]
|
|
760
|
+
BASE_SCORE_FIELD_NUMBER: _ClassVar[int]
|
|
761
|
+
ROVER_LEVEL_FIELD_NUMBER: _ClassVar[int]
|
|
762
|
+
ROVER_SCORE_FIELD_NUMBER: _ClassVar[int]
|
|
763
|
+
base_level: int
|
|
764
|
+
base_moved: int
|
|
765
|
+
base_moving: int
|
|
766
|
+
base_score: int
|
|
767
|
+
rover_level: int
|
|
768
|
+
rover_score: int
|
|
769
|
+
def __init__(self, rover_score: _Optional[int] = ..., rover_level: _Optional[int] = ..., base_score: _Optional[int] = ..., base_level: _Optional[int] = ..., base_moved: _Optional[int] = ..., base_moving: _Optional[int] = ...) -> None: ...
|
|
770
|
+
|
|
771
|
+
class remote_reset_req_t(_message.Message):
|
|
772
|
+
__slots__ = ["account", "bizid", "force_reset", "magic", "reset_mode"]
|
|
773
|
+
ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
774
|
+
BIZID_FIELD_NUMBER: _ClassVar[int]
|
|
775
|
+
FORCE_RESET_FIELD_NUMBER: _ClassVar[int]
|
|
776
|
+
MAGIC_FIELD_NUMBER: _ClassVar[int]
|
|
777
|
+
RESET_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
778
|
+
account: int
|
|
779
|
+
bizid: int
|
|
780
|
+
force_reset: int
|
|
781
|
+
magic: int
|
|
782
|
+
reset_mode: int
|
|
783
|
+
def __init__(self, magic: _Optional[int] = ..., bizid: _Optional[int] = ..., reset_mode: _Optional[int] = ..., force_reset: _Optional[int] = ..., account: _Optional[int] = ...) -> None: ...
|
|
784
|
+
|
|
785
|
+
class remote_reset_rsp_t(_message.Message):
|
|
786
|
+
__slots__ = ["bizid", "magic", "result"]
|
|
787
|
+
BIZID_FIELD_NUMBER: _ClassVar[int]
|
|
788
|
+
MAGIC_FIELD_NUMBER: _ClassVar[int]
|
|
789
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
790
|
+
bizid: int
|
|
791
|
+
magic: int
|
|
792
|
+
result: Command_Result
|
|
793
|
+
def __init__(self, magic: _Optional[int] = ..., bizid: _Optional[int] = ..., result: _Optional[_Union[Command_Result, str]] = ...) -> None: ...
|
|
794
|
+
|
|
795
|
+
class report_info_cfg(_message.Message):
|
|
796
|
+
__slots__ = ["act", "count", "no_change_period", "period", "sub", "timeout"]
|
|
797
|
+
ACT_FIELD_NUMBER: _ClassVar[int]
|
|
798
|
+
COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
799
|
+
NO_CHANGE_PERIOD_FIELD_NUMBER: _ClassVar[int]
|
|
800
|
+
PERIOD_FIELD_NUMBER: _ClassVar[int]
|
|
801
|
+
SUB_FIELD_NUMBER: _ClassVar[int]
|
|
802
|
+
TIMEOUT_FIELD_NUMBER: _ClassVar[int]
|
|
803
|
+
act: rpt_act
|
|
804
|
+
count: int
|
|
805
|
+
no_change_period: int
|
|
806
|
+
period: int
|
|
807
|
+
sub: _containers.RepeatedScalarFieldContainer[rpt_info_type]
|
|
808
|
+
timeout: int
|
|
809
|
+
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: ...
|
|
810
|
+
|
|
811
|
+
class report_info_data(_message.Message):
|
|
812
|
+
__slots__ = ["basestation_info", "connect", "cutter_work_mode_info", "dev", "fw_info", "locations", "maintain", "rtk", "vio_to_app_info", "vision_point_info", "vision_statistic_info", "work"]
|
|
813
|
+
BASESTATION_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
814
|
+
CONNECT_FIELD_NUMBER: _ClassVar[int]
|
|
815
|
+
CUTTER_WORK_MODE_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
816
|
+
DEV_FIELD_NUMBER: _ClassVar[int]
|
|
817
|
+
FW_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
818
|
+
LOCATIONS_FIELD_NUMBER: _ClassVar[int]
|
|
819
|
+
MAINTAIN_FIELD_NUMBER: _ClassVar[int]
|
|
820
|
+
RTK_FIELD_NUMBER: _ClassVar[int]
|
|
821
|
+
VIO_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
822
|
+
VISION_POINT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
823
|
+
VISION_STATISTIC_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
824
|
+
WORK_FIELD_NUMBER: _ClassVar[int]
|
|
825
|
+
basestation_info: rpt_basestation_info
|
|
826
|
+
connect: rpt_connect_status
|
|
827
|
+
cutter_work_mode_info: rpt_cutter_rpm
|
|
828
|
+
dev: rpt_dev_status
|
|
829
|
+
fw_info: device_fw_info
|
|
830
|
+
locations: _containers.RepeatedCompositeFieldContainer[rpt_dev_location]
|
|
831
|
+
maintain: rpt_maintain
|
|
832
|
+
rtk: rpt_rtk
|
|
833
|
+
vio_to_app_info: vio_to_app_info_msg
|
|
834
|
+
vision_point_info: _containers.RepeatedCompositeFieldContainer[vision_point_info_msg]
|
|
835
|
+
vision_statistic_info: vision_statistic_info_msg
|
|
836
|
+
work: rpt_work
|
|
837
|
+
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]] = ..., basestation_info: _Optional[_Union[rpt_basestation_info, _Mapping]] = ..., cutter_work_mode_info: _Optional[_Union[rpt_cutter_rpm, _Mapping]] = ...) -> None: ...
|
|
838
|
+
|
|
839
|
+
class report_info_t(_message.Message):
|
|
840
|
+
__slots__ = ["dev_status"]
|
|
841
|
+
DEV_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
842
|
+
dev_status: dev_statue_t
|
|
843
|
+
def __init__(self, dev_status: _Optional[_Union[dev_statue_t, _Mapping]] = ...) -> None: ...
|
|
844
|
+
|
|
845
|
+
class response_set_mode_t(_message.Message):
|
|
846
|
+
__slots__ = ["cur_work_mode", "cur_work_time", "end_work_time", "interruptflag", "set_work_mode", "start_work_time", "statue"]
|
|
847
|
+
CUR_WORK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
848
|
+
CUR_WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
849
|
+
END_WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
850
|
+
INTERRUPTFLAG_FIELD_NUMBER: _ClassVar[int]
|
|
851
|
+
SET_WORK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
852
|
+
START_WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
853
|
+
STATUE_FIELD_NUMBER: _ClassVar[int]
|
|
854
|
+
cur_work_mode: int
|
|
855
|
+
cur_work_time: int
|
|
856
|
+
end_work_time: int
|
|
857
|
+
interruptflag: int
|
|
858
|
+
set_work_mode: int
|
|
859
|
+
start_work_time: int
|
|
860
|
+
statue: int
|
|
861
|
+
def __init__(self, statue: _Optional[int] = ..., set_work_mode: _Optional[int] = ..., cur_work_mode: _Optional[int] = ..., start_work_time: _Optional[int] = ..., end_work_time: _Optional[int] = ..., interruptflag: _Optional[int] = ..., cur_work_time: _Optional[int] = ...) -> None: ...
|
|
862
|
+
|
|
863
|
+
class rpt_basestation_info(_message.Message):
|
|
864
|
+
__slots__ = ["basestation_status", "connect_status_since_poweron", "ver_build", "ver_major", "ver_minor", "ver_patch"]
|
|
865
|
+
BASESTATION_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
866
|
+
CONNECT_STATUS_SINCE_POWERON_FIELD_NUMBER: _ClassVar[int]
|
|
867
|
+
VER_BUILD_FIELD_NUMBER: _ClassVar[int]
|
|
868
|
+
VER_MAJOR_FIELD_NUMBER: _ClassVar[int]
|
|
869
|
+
VER_MINOR_FIELD_NUMBER: _ClassVar[int]
|
|
870
|
+
VER_PATCH_FIELD_NUMBER: _ClassVar[int]
|
|
871
|
+
basestation_status: int
|
|
872
|
+
connect_status_since_poweron: int
|
|
873
|
+
ver_build: int
|
|
874
|
+
ver_major: int
|
|
875
|
+
ver_minor: int
|
|
876
|
+
ver_patch: int
|
|
877
|
+
def __init__(self, ver_major: _Optional[int] = ..., ver_minor: _Optional[int] = ..., ver_patch: _Optional[int] = ..., ver_build: _Optional[int] = ..., basestation_status: _Optional[int] = ..., connect_status_since_poweron: _Optional[int] = ...) -> None: ...
|
|
878
|
+
|
|
879
|
+
class rpt_connect_status(_message.Message):
|
|
880
|
+
__slots__ = ["ble_rssi", "connect_type", "dev_net_speed", "iot_con_status", "iot_wifi_report", "link_type", "mnet_cfg", "mnet_inet", "mnet_rssi", "used_net", "wifi_con_status", "wifi_is_available", "wifi_rssi"]
|
|
881
|
+
BLE_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
882
|
+
CONNECT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
883
|
+
DEV_NET_SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
884
|
+
IOT_CON_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
885
|
+
IOT_WIFI_REPORT_FIELD_NUMBER: _ClassVar[int]
|
|
886
|
+
LINK_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
887
|
+
MNET_CFG_FIELD_NUMBER: _ClassVar[int]
|
|
888
|
+
MNET_INET_FIELD_NUMBER: _ClassVar[int]
|
|
889
|
+
MNET_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
890
|
+
USED_NET_FIELD_NUMBER: _ClassVar[int]
|
|
891
|
+
WIFI_CON_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
892
|
+
WIFI_IS_AVAILABLE_FIELD_NUMBER: _ClassVar[int]
|
|
893
|
+
WIFI_RSSI_FIELD_NUMBER: _ClassVar[int]
|
|
894
|
+
ble_rssi: int
|
|
895
|
+
connect_type: int
|
|
896
|
+
dev_net_speed: net_speed
|
|
897
|
+
iot_con_status: int
|
|
898
|
+
iot_wifi_report: bool
|
|
899
|
+
link_type: int
|
|
900
|
+
mnet_cfg: _dev_net_pb2.MnetCfg
|
|
901
|
+
mnet_inet: int
|
|
902
|
+
mnet_rssi: int
|
|
903
|
+
used_net: net_used_type
|
|
904
|
+
wifi_con_status: int
|
|
905
|
+
wifi_is_available: int
|
|
906
|
+
wifi_rssi: int
|
|
907
|
+
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]] = ..., mnet_cfg: _Optional[_Union[_dev_net_pb2.MnetCfg, _Mapping]] = ..., dev_net_speed: _Optional[_Union[net_speed, _Mapping]] = ..., iot_wifi_report: bool = ..., iot_con_status: _Optional[int] = ..., wifi_con_status: _Optional[int] = ..., wifi_is_available: _Optional[int] = ...) -> None: ...
|
|
908
|
+
|
|
909
|
+
class rpt_cutter_rpm(_message.Message):
|
|
910
|
+
__slots__ = ["current_cutter_mode", "current_cutter_rpm"]
|
|
911
|
+
CURRENT_CUTTER_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
912
|
+
CURRENT_CUTTER_RPM_FIELD_NUMBER: _ClassVar[int]
|
|
913
|
+
current_cutter_mode: int
|
|
914
|
+
current_cutter_rpm: int
|
|
915
|
+
def __init__(self, current_cutter_mode: _Optional[int] = ..., current_cutter_rpm: _Optional[int] = ...) -> None: ...
|
|
916
|
+
|
|
917
|
+
class rpt_dev_location(_message.Message):
|
|
918
|
+
__slots__ = ["bol_hash", "pos_type", "real_pos_x", "real_pos_y", "real_toward", "zone_hash"]
|
|
919
|
+
BOL_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
920
|
+
POS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
921
|
+
REAL_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
922
|
+
REAL_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
923
|
+
REAL_TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
924
|
+
ZONE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
925
|
+
bol_hash: int
|
|
926
|
+
pos_type: int
|
|
927
|
+
real_pos_x: int
|
|
928
|
+
real_pos_y: int
|
|
929
|
+
real_toward: int
|
|
930
|
+
zone_hash: int
|
|
931
|
+
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: ...
|
|
932
|
+
|
|
933
|
+
class rpt_dev_status(_message.Message):
|
|
934
|
+
__slots__ = ["battery_val", "charge_state", "collector_status", "fpv_info", "last_status", "lock_state", "mnet_info", "self_check_status", "sensor_status", "sys_status", "sys_time_stamp", "vio_survival_info", "vslam_status"]
|
|
935
|
+
BATTERY_VAL_FIELD_NUMBER: _ClassVar[int]
|
|
936
|
+
CHARGE_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
937
|
+
COLLECTOR_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
938
|
+
FPV_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
939
|
+
LAST_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
940
|
+
LOCK_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
941
|
+
MNET_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
942
|
+
SELF_CHECK_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
943
|
+
SENSOR_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
944
|
+
SYS_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
945
|
+
SYS_TIME_STAMP_FIELD_NUMBER: _ClassVar[int]
|
|
946
|
+
VIO_SURVIVAL_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
947
|
+
VSLAM_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
948
|
+
battery_val: int
|
|
949
|
+
charge_state: int
|
|
950
|
+
collector_status: collector_status_t
|
|
951
|
+
fpv_info: fpv_to_app_info_t
|
|
952
|
+
last_status: int
|
|
953
|
+
lock_state: lock_state_t
|
|
954
|
+
mnet_info: _dev_net_pb2.MnetInfo
|
|
955
|
+
self_check_status: int
|
|
956
|
+
sensor_status: int
|
|
957
|
+
sys_status: int
|
|
958
|
+
sys_time_stamp: int
|
|
959
|
+
vio_survival_info: vio_survival_info_t
|
|
960
|
+
vslam_status: int
|
|
961
|
+
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]] = ..., self_check_status: _Optional[int] = ..., fpv_info: _Optional[_Union[fpv_to_app_info_t, _Mapping]] = ...) -> None: ...
|
|
962
|
+
|
|
963
|
+
class rpt_lora(_message.Message):
|
|
964
|
+
__slots__ = ["lora_connection_status", "pair_code_channel", "pair_code_locid", "pair_code_netid", "pair_code_scan"]
|
|
965
|
+
LORA_CONNECTION_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
966
|
+
PAIR_CODE_CHANNEL_FIELD_NUMBER: _ClassVar[int]
|
|
967
|
+
PAIR_CODE_LOCID_FIELD_NUMBER: _ClassVar[int]
|
|
968
|
+
PAIR_CODE_NETID_FIELD_NUMBER: _ClassVar[int]
|
|
969
|
+
PAIR_CODE_SCAN_FIELD_NUMBER: _ClassVar[int]
|
|
970
|
+
lora_connection_status: int
|
|
971
|
+
pair_code_channel: int
|
|
972
|
+
pair_code_locid: int
|
|
973
|
+
pair_code_netid: int
|
|
974
|
+
pair_code_scan: int
|
|
975
|
+
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: ...
|
|
976
|
+
|
|
977
|
+
class rpt_maintain(_message.Message):
|
|
978
|
+
__slots__ = ["bat_cycles", "blade_used_time", "mileage", "work_time"]
|
|
979
|
+
BAT_CYCLES_FIELD_NUMBER: _ClassVar[int]
|
|
980
|
+
BLADE_USED_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
981
|
+
MILEAGE_FIELD_NUMBER: _ClassVar[int]
|
|
982
|
+
WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
983
|
+
bat_cycles: int
|
|
984
|
+
blade_used_time: blade_used
|
|
985
|
+
mileage: int
|
|
986
|
+
work_time: int
|
|
987
|
+
def __init__(self, mileage: _Optional[int] = ..., work_time: _Optional[int] = ..., bat_cycles: _Optional[int] = ..., blade_used_time: _Optional[_Union[blade_used, _Mapping]] = ...) -> None: ...
|
|
988
|
+
|
|
989
|
+
class rpt_rtk(_message.Message):
|
|
990
|
+
__slots__ = ["age", "co_view_stars", "dis_status", "gps_stars", "l2_stars", "lat_std", "lon_std", "lora_info", "mqtt_rtk_info", "pos_level", "reset", "score_info", "status", "top4_total_mean"]
|
|
991
|
+
AGE_FIELD_NUMBER: _ClassVar[int]
|
|
992
|
+
CO_VIEW_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
993
|
+
DIS_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
994
|
+
GPS_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
995
|
+
L2_STARS_FIELD_NUMBER: _ClassVar[int]
|
|
996
|
+
LAT_STD_FIELD_NUMBER: _ClassVar[int]
|
|
997
|
+
LON_STD_FIELD_NUMBER: _ClassVar[int]
|
|
998
|
+
LORA_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
999
|
+
MQTT_RTK_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1000
|
+
POS_LEVEL_FIELD_NUMBER: _ClassVar[int]
|
|
1001
|
+
RESET_FIELD_NUMBER: _ClassVar[int]
|
|
1002
|
+
SCORE_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1003
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
1004
|
+
TOP4_TOTAL_MEAN_FIELD_NUMBER: _ClassVar[int]
|
|
1005
|
+
age: int
|
|
1006
|
+
co_view_stars: int
|
|
1007
|
+
dis_status: int
|
|
1008
|
+
gps_stars: int
|
|
1009
|
+
l2_stars: int
|
|
1010
|
+
lat_std: int
|
|
1011
|
+
lon_std: int
|
|
1012
|
+
lora_info: rpt_lora
|
|
1013
|
+
mqtt_rtk_info: mqtt_rtk_connect
|
|
1014
|
+
pos_level: int
|
|
1015
|
+
reset: int
|
|
1016
|
+
score_info: pos_score
|
|
1017
|
+
status: int
|
|
1018
|
+
top4_total_mean: int
|
|
1019
|
+
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]] = ..., mqtt_rtk_info: _Optional[_Union[mqtt_rtk_connect, _Mapping]] = ..., score_info: _Optional[_Union[pos_score, _Mapping]] = ...) -> None: ...
|
|
1020
|
+
|
|
1021
|
+
class rpt_work(_message.Message):
|
|
1022
|
+
__slots__ = ["area", "bp_hash", "bp_info", "bp_pos_x", "bp_pos_y", "cutter_offset", "cutter_width", "init_cfg_hash", "knife_height", "man_run_speed", "nav_edit_status", "nav_heading_state", "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"]
|
|
1023
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
1024
|
+
BP_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1025
|
+
BP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1026
|
+
BP_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
1027
|
+
BP_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
1028
|
+
CUTTER_OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
1029
|
+
CUTTER_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
1030
|
+
INIT_CFG_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1031
|
+
KNIFE_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
1032
|
+
MAN_RUN_SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
1033
|
+
NAV_EDIT_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
1034
|
+
NAV_HEADING_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
1035
|
+
NAV_RUN_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
1036
|
+
PATH_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1037
|
+
PATH_POS_X_FIELD_NUMBER: _ClassVar[int]
|
|
1038
|
+
PATH_POS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
1039
|
+
PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
1040
|
+
PROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
1041
|
+
REAL_PATH_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
1042
|
+
TEST_MODE_STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
1043
|
+
UB_ECODE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1044
|
+
UB_PATH_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1045
|
+
UB_ZONE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
1046
|
+
area: int
|
|
1047
|
+
bp_hash: int
|
|
1048
|
+
bp_info: int
|
|
1049
|
+
bp_pos_x: int
|
|
1050
|
+
bp_pos_y: int
|
|
1051
|
+
cutter_offset: float
|
|
1052
|
+
cutter_width: float
|
|
1053
|
+
init_cfg_hash: int
|
|
1054
|
+
knife_height: int
|
|
1055
|
+
man_run_speed: int
|
|
1056
|
+
nav_edit_status: int
|
|
1057
|
+
nav_heading_state: nav_heading_state_t
|
|
1058
|
+
nav_run_mode: int
|
|
1059
|
+
path_hash: int
|
|
1060
|
+
path_pos_x: int
|
|
1061
|
+
path_pos_y: int
|
|
1062
|
+
plan: int
|
|
1063
|
+
progress: int
|
|
1064
|
+
real_path_num: int
|
|
1065
|
+
test_mode_status: int
|
|
1066
|
+
ub_ecode_hash: int
|
|
1067
|
+
ub_path_hash: int
|
|
1068
|
+
ub_zone_hash: int
|
|
1069
|
+
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] = ..., nav_heading_state: _Optional[_Union[nav_heading_state_t, _Mapping]] = ..., cutter_offset: _Optional[float] = ..., cutter_width: _Optional[float] = ...) -> None: ...
|
|
1070
|
+
|
|
1071
|
+
class set_peripherals_t(_message.Message):
|
|
1072
|
+
__slots__ = ["buzz_enable"]
|
|
1073
|
+
BUZZ_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
1074
|
+
buzz_enable: int
|
|
1075
|
+
def __init__(self, buzz_enable: _Optional[int] = ...) -> None: ...
|
|
1076
|
+
|
|
1077
|
+
class special_mode_t(_message.Message):
|
|
1078
|
+
__slots__ = ["berthing_mode", "stair_mode", "violent_mode"]
|
|
1079
|
+
BERTHING_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
1080
|
+
STAIR_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
1081
|
+
VIOLENT_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
1082
|
+
berthing_mode: int
|
|
1083
|
+
stair_mode: int
|
|
1084
|
+
violent_mode: int
|
|
1085
|
+
def __init__(self, stair_mode: _Optional[int] = ..., violent_mode: _Optional[int] = ..., berthing_mode: _Optional[int] = ...) -> None: ...
|
|
1086
|
+
|
|
1087
|
+
class systemRapidStateTunnel_msg(_message.Message):
|
|
1088
|
+
__slots__ = ["rapid_state_data", "vio_to_app_info", "vision_point_info", "vision_statistic_info"]
|
|
1089
|
+
RAPID_STATE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
1090
|
+
VIO_TO_APP_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1091
|
+
VISION_POINT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1092
|
+
VISION_STATISTIC_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
1093
|
+
rapid_state_data: _containers.RepeatedScalarFieldContainer[int]
|
|
1094
|
+
vio_to_app_info: vio_to_app_info_msg
|
|
1095
|
+
vision_point_info: _containers.RepeatedCompositeFieldContainer[vision_point_info_msg]
|
|
1096
|
+
vision_statistic_info: vision_statistic_info_msg
|
|
1097
|
+
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: ...
|
|
1098
|
+
|
|
1099
|
+
class systemTardStateTunnel_msg(_message.Message):
|
|
1100
|
+
__slots__ = ["tard_state_data"]
|
|
1101
|
+
TARD_STATE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
1102
|
+
tard_state_data: _containers.RepeatedScalarFieldContainer[int]
|
|
1103
|
+
def __init__(self, tard_state_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
1104
|
+
|
|
1105
|
+
class systemTmpCycleTx_msg(_message.Message):
|
|
1106
|
+
__slots__ = ["cycle_tx_data"]
|
|
1107
|
+
CYCLE_TX_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
1108
|
+
cycle_tx_data: _containers.RepeatedScalarFieldContainer[int]
|
|
1109
|
+
def __init__(self, cycle_tx_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
1110
|
+
|
|
1111
|
+
class systemUpdateBuf_msg(_message.Message):
|
|
1112
|
+
__slots__ = ["update_buf_data"]
|
|
1113
|
+
UPDATE_BUF_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
1114
|
+
update_buf_data: _containers.RepeatedScalarFieldContainer[int]
|
|
1115
|
+
def __init__(self, update_buf_data: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
1116
|
+
|
|
1117
|
+
class user_set_blade_used_warn_time(_message.Message):
|
|
1118
|
+
__slots__ = ["blade_used_warn_time"]
|
|
1119
|
+
BLADE_USED_WARN_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
1120
|
+
blade_used_warn_time: int
|
|
1121
|
+
def __init__(self, blade_used_warn_time: _Optional[int] = ...) -> None: ...
|
|
1122
|
+
|
|
1123
|
+
class vio_survival_info_t(_message.Message):
|
|
1124
|
+
__slots__ = ["vio_survival_distance"]
|
|
1125
|
+
VIO_SURVIVAL_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
1126
|
+
vio_survival_distance: float
|
|
1127
|
+
def __init__(self, vio_survival_distance: _Optional[float] = ...) -> None: ...
|
|
1128
|
+
|
|
1129
|
+
class vio_to_app_info_msg(_message.Message):
|
|
1130
|
+
__slots__ = ["brightness", "detect_feature_num", "heading", "track_feature_num", "vio_state", "x", "y"]
|
|
1131
|
+
BRIGHTNESS_FIELD_NUMBER: _ClassVar[int]
|
|
1132
|
+
DETECT_FEATURE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
1133
|
+
HEADING_FIELD_NUMBER: _ClassVar[int]
|
|
1134
|
+
TRACK_FEATURE_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
1135
|
+
VIO_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
1136
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
1137
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
1138
|
+
brightness: int
|
|
1139
|
+
detect_feature_num: int
|
|
1140
|
+
heading: float
|
|
1141
|
+
track_feature_num: int
|
|
1142
|
+
vio_state: int
|
|
1143
|
+
x: float
|
|
1144
|
+
y: float
|
|
1145
|
+
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: ...
|
|
1146
|
+
|
|
1147
|
+
class vision_point_info_msg(_message.Message):
|
|
1148
|
+
__slots__ = ["label", "num", "vision_point"]
|
|
1149
|
+
LABEL_FIELD_NUMBER: _ClassVar[int]
|
|
1150
|
+
NUM_FIELD_NUMBER: _ClassVar[int]
|
|
1151
|
+
VISION_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
1152
|
+
label: int
|
|
1153
|
+
num: int
|
|
1154
|
+
vision_point: _containers.RepeatedCompositeFieldContainer[vision_point_msg]
|
|
1155
|
+
def __init__(self, label: _Optional[int] = ..., num: _Optional[int] = ..., vision_point: _Optional[_Iterable[_Union[vision_point_msg, _Mapping]]] = ...) -> None: ...
|
|
1156
|
+
|
|
1157
|
+
class vision_point_msg(_message.Message):
|
|
1158
|
+
__slots__ = ["x", "y", "z"]
|
|
1159
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
1160
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
1161
|
+
Z_FIELD_NUMBER: _ClassVar[int]
|
|
1162
|
+
x: float
|
|
1163
|
+
y: float
|
|
1164
|
+
z: float
|
|
1165
|
+
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., z: _Optional[float] = ...) -> None: ...
|
|
1166
|
+
|
|
1167
|
+
class vision_statistic_info_msg(_message.Message):
|
|
1168
|
+
__slots__ = ["num", "timestamp", "vision_statistics"]
|
|
1169
|
+
NUM_FIELD_NUMBER: _ClassVar[int]
|
|
1170
|
+
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
1171
|
+
VISION_STATISTICS_FIELD_NUMBER: _ClassVar[int]
|
|
1172
|
+
num: int
|
|
1173
|
+
timestamp: float
|
|
1174
|
+
vision_statistics: _containers.RepeatedCompositeFieldContainer[vision_statistic_msg]
|
|
1175
|
+
def __init__(self, timestamp: _Optional[float] = ..., num: _Optional[int] = ..., vision_statistics: _Optional[_Iterable[_Union[vision_statistic_msg, _Mapping]]] = ...) -> None: ...
|
|
1176
|
+
|
|
1177
|
+
class vision_statistic_msg(_message.Message):
|
|
1178
|
+
__slots__ = ["mean", "var"]
|
|
1179
|
+
MEAN_FIELD_NUMBER: _ClassVar[int]
|
|
1180
|
+
VAR_FIELD_NUMBER: _ClassVar[int]
|
|
1181
|
+
mean: float
|
|
1182
|
+
var: float
|
|
1183
|
+
def __init__(self, mean: _Optional[float] = ..., var: _Optional[float] = ...) -> None: ...
|
|
1184
|
+
|
|
1185
|
+
class work_mode_t(_message.Message):
|
|
1186
|
+
__slots__ = ["work_mode"]
|
|
1187
|
+
WORK_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
1188
|
+
work_mode: int
|
|
1189
|
+
def __init__(self, work_mode: _Optional[int] = ...) -> None: ...
|
|
1190
|
+
|
|
1191
|
+
class Operation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1192
|
+
__slots__ = []
|
|
1193
|
+
|
|
1194
|
+
class OffPartId(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1195
|
+
__slots__ = []
|
|
1196
|
+
|
|
1197
|
+
class QCAppTestId(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1198
|
+
__slots__ = []
|
|
1199
|
+
|
|
1200
|
+
class rtk_used_type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1201
|
+
__slots__ = []
|
|
1202
|
+
|
|
1203
|
+
class net_used_type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1204
|
+
__slots__ = []
|
|
1205
|
+
|
|
1206
|
+
class rpt_info_type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1207
|
+
__slots__ = []
|
|
1208
|
+
|
|
1209
|
+
class rpt_act(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1210
|
+
__slots__ = []
|
|
1211
|
+
|
|
1212
|
+
class Command_Result(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
1213
|
+
__slots__ = []
|