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,1067 @@
|
|
|
1
|
+
from pymammotion.proto import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class AppGetAllAreaHashName(_message.Message):
|
|
10
|
+
__slots__ = ["deviceId", "hashnames"]
|
|
11
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
HASHNAMES_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
deviceId: str
|
|
14
|
+
hashnames: _containers.RepeatedCompositeFieldContainer[area_hash_name]
|
|
15
|
+
def __init__(self, deviceId: _Optional[str] = ..., hashnames: _Optional[_Iterable[_Union[area_hash_name, _Mapping]]] = ...) -> None: ...
|
|
16
|
+
|
|
17
|
+
class ManualElementMessage(_message.Message):
|
|
18
|
+
__slots__ = ["dataHash", "ifHide", "point1_center_x", "point1_center_y", "point2_height_y", "point2_width_x", "pver", "reserved", "result", "rotate_radius", "shape", "subCmd", "type"]
|
|
19
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
IFHIDE_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
POINT1_CENTER_X_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
POINT1_CENTER_Y_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
POINT2_HEIGHT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
POINT2_WIDTH_X_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
ROTATE_RADIUS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
SHAPE_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
dataHash: int
|
|
33
|
+
ifHide: bool
|
|
34
|
+
point1_center_x: float
|
|
35
|
+
point1_center_y: float
|
|
36
|
+
point2_height_y: float
|
|
37
|
+
point2_width_x: float
|
|
38
|
+
pver: int
|
|
39
|
+
reserved: str
|
|
40
|
+
result: int
|
|
41
|
+
rotate_radius: float
|
|
42
|
+
shape: int
|
|
43
|
+
subCmd: int
|
|
44
|
+
type: int
|
|
45
|
+
def __init__(self, pver: _Optional[int] = ..., type: _Optional[int] = ..., shape: _Optional[int] = ..., result: _Optional[int] = ..., subCmd: _Optional[int] = ..., dataHash: _Optional[int] = ..., ifHide: bool = ..., reserved: _Optional[str] = ..., point1_center_x: _Optional[float] = ..., point1_center_y: _Optional[float] = ..., point2_width_x: _Optional[float] = ..., point2_height_y: _Optional[float] = ..., rotate_radius: _Optional[float] = ...) -> None: ...
|
|
46
|
+
|
|
47
|
+
class MctlNav(_message.Message):
|
|
48
|
+
__slots__ = ["all_plan_task", "app_request_cover_paths", "bidire_reqconver_path", "bidire_taskid", "cover_path_upload", "nav_sys_param_cmd", "plan_task_execute", "plan_task_name_id", "simulation_cmd", "toapp_all_hash_name", "toapp_bp", "toapp_bstate", "toapp_chgpileto", "toapp_costmap", "toapp_edge_points", "toapp_edge_points_ack", "toapp_get_commondata_ack", "toapp_gethash_ack", "toapp_lat_up", "toapp_manual_element", "toapp_map_name_msg", "toapp_opt_border_info", "toapp_opt_line_up", "toapp_opt_obs_info", "toapp_pos_up", "toapp_svg_msg", "toapp_task_info", "toapp_work_report_ack", "toapp_work_report_update_ack", "toapp_work_report_upload", "toapp_zigzag", "todev_cancel_draw_cmd", "todev_cancel_suscmd", "todev_chl_line", "todev_chl_line_data", "todev_chl_line_end", "todev_draw_border", "todev_draw_border_end", "todev_draw_obs", "todev_draw_obs_end", "todev_edgecmd", "todev_get_commondata", "todev_gethash", "todev_lat_up_ack", "todev_mow_task", "todev_one_touch_leave_pile", "todev_opt_border_info_ack", "todev_opt_line_up_ack", "todev_opt_obs_info_ack", "todev_planjob_set", "todev_rechgcmd", "todev_reset_chg_pile", "todev_save_task", "todev_sustask", "todev_svg_msg", "todev_task_info_ack", "todev_taskctrl", "todev_taskctrl_ack", "todev_unable_time_set", "todev_work_report_cmd", "todev_work_report_update_cmd", "todev_zigzag_ack", "vision_ctrl", "zone_start_precent"]
|
|
49
|
+
ALL_PLAN_TASK_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
APP_REQUEST_COVER_PATHS_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
BIDIRE_REQCONVER_PATH_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
BIDIRE_TASKID_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
COVER_PATH_UPLOAD_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
NAV_SYS_PARAM_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
PLAN_TASK_EXECUTE_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
PLAN_TASK_NAME_ID_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
SIMULATION_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
TOAPP_ALL_HASH_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
TOAPP_BP_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
TOAPP_BSTATE_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
TOAPP_CHGPILETO_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
TOAPP_COSTMAP_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
TOAPP_EDGE_POINTS_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
TOAPP_EDGE_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
TOAPP_GETHASH_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
TOAPP_GET_COMMONDATA_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
TOAPP_LAT_UP_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
TOAPP_MANUAL_ELEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
TOAPP_MAP_NAME_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
TOAPP_OPT_BORDER_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
TOAPP_OPT_LINE_UP_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
TOAPP_OPT_OBS_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
TOAPP_POS_UP_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
TOAPP_SVG_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
TOAPP_TASK_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
TOAPP_WORK_REPORT_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
TOAPP_WORK_REPORT_UPDATE_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
TOAPP_WORK_REPORT_UPLOAD_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
TOAPP_ZIGZAG_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
TODEV_CANCEL_DRAW_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
TODEV_CANCEL_SUSCMD_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
TODEV_CHL_LINE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
TODEV_CHL_LINE_END_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
TODEV_CHL_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
TODEV_DRAW_BORDER_END_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
TODEV_DRAW_BORDER_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
TODEV_DRAW_OBS_END_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
TODEV_DRAW_OBS_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
TODEV_EDGECMD_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
TODEV_GETHASH_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
TODEV_GET_COMMONDATA_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
TODEV_LAT_UP_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
TODEV_MOW_TASK_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
TODEV_ONE_TOUCH_LEAVE_PILE_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
TODEV_OPT_BORDER_INFO_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
TODEV_OPT_LINE_UP_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
TODEV_OPT_OBS_INFO_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
TODEV_PLANJOB_SET_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
TODEV_RECHGCMD_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
TODEV_RESET_CHG_PILE_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
TODEV_SAVE_TASK_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
TODEV_SUSTASK_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
TODEV_SVG_MSG_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
TODEV_TASKCTRL_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
TODEV_TASKCTRL_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
TODEV_TASK_INFO_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
TODEV_UNABLE_TIME_SET_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
TODEV_WORK_REPORT_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
TODEV_WORK_REPORT_UPDATE_CMD_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
TODEV_ZIGZAG_ACK_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
VISION_CTRL_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
ZONE_START_PRECENT_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
all_plan_task: nav_get_all_plan_task
|
|
114
|
+
app_request_cover_paths: app_request_cover_paths_t
|
|
115
|
+
bidire_reqconver_path: NavReqCoverPath
|
|
116
|
+
bidire_taskid: NavTaskIdRw
|
|
117
|
+
cover_path_upload: cover_path_upload_t
|
|
118
|
+
nav_sys_param_cmd: nav_sys_param_msg
|
|
119
|
+
plan_task_execute: nav_plan_task_execute
|
|
120
|
+
plan_task_name_id: plan_task_name_id_t
|
|
121
|
+
simulation_cmd: SimulationCmdData
|
|
122
|
+
toapp_all_hash_name: AppGetAllAreaHashName
|
|
123
|
+
toapp_bp: NavTaskBreakPoint
|
|
124
|
+
toapp_bstate: NavBorderState
|
|
125
|
+
toapp_chgpileto: chargePileType
|
|
126
|
+
toapp_costmap: costmap_t
|
|
127
|
+
toapp_edge_points: NavEdgePoints
|
|
128
|
+
toapp_edge_points_ack: NavEdgePointsAck
|
|
129
|
+
toapp_get_commondata_ack: NavGetCommDataAck
|
|
130
|
+
toapp_gethash_ack: NavGetHashListAck
|
|
131
|
+
toapp_lat_up: NavLatLonUp
|
|
132
|
+
toapp_manual_element: ManualElementMessage
|
|
133
|
+
toapp_map_name_msg: NavMapNameMsg
|
|
134
|
+
toapp_opt_border_info: NavOptiBorderInfo
|
|
135
|
+
toapp_opt_line_up: NavOptLineUp
|
|
136
|
+
toapp_opt_obs_info: NavOptObsInfo
|
|
137
|
+
toapp_pos_up: NavPosUp
|
|
138
|
+
toapp_svg_msg: svg_message_ack_t
|
|
139
|
+
toapp_task_info: NavTaskInfo
|
|
140
|
+
toapp_work_report_ack: WorkReportInfoAck
|
|
141
|
+
toapp_work_report_update_ack: WorkReportUpdateAck
|
|
142
|
+
toapp_work_report_upload: WorkReportInfoAck
|
|
143
|
+
toapp_zigzag: NavUploadZigZagResult
|
|
144
|
+
todev_cancel_draw_cmd: int
|
|
145
|
+
todev_cancel_suscmd: int
|
|
146
|
+
todev_chl_line: int
|
|
147
|
+
todev_chl_line_data: NavCHlLineData
|
|
148
|
+
todev_chl_line_end: int
|
|
149
|
+
todev_draw_border: int
|
|
150
|
+
todev_draw_border_end: int
|
|
151
|
+
todev_draw_obs: int
|
|
152
|
+
todev_draw_obs_end: int
|
|
153
|
+
todev_edgecmd: int
|
|
154
|
+
todev_get_commondata: NavGetCommData
|
|
155
|
+
todev_gethash: NavGetHashList
|
|
156
|
+
todev_lat_up_ack: int
|
|
157
|
+
todev_mow_task: NavStartJob
|
|
158
|
+
todev_one_touch_leave_pile: int
|
|
159
|
+
todev_opt_border_info_ack: NavResFrame
|
|
160
|
+
todev_opt_line_up_ack: NavResFrame
|
|
161
|
+
todev_opt_obs_info_ack: NavResFrame
|
|
162
|
+
todev_planjob_set: NavPlanJobSet
|
|
163
|
+
todev_rechgcmd: int
|
|
164
|
+
todev_reset_chg_pile: int
|
|
165
|
+
todev_save_task: int
|
|
166
|
+
todev_sustask: int
|
|
167
|
+
todev_svg_msg: svg_message_ack_t
|
|
168
|
+
todev_task_info_ack: NavResFrame
|
|
169
|
+
todev_taskctrl: NavTaskCtrl
|
|
170
|
+
todev_taskctrl_ack: NavTaskCtrlAck
|
|
171
|
+
todev_unable_time_set: NavUnableTimeSet
|
|
172
|
+
todev_work_report_cmd: WorkReportCmdData
|
|
173
|
+
todev_work_report_update_cmd: WorkReportUpdateCmd
|
|
174
|
+
todev_zigzag_ack: NavUploadZigZagResultAck
|
|
175
|
+
vision_ctrl: vision_ctrl_msg
|
|
176
|
+
zone_start_precent: zone_start_precent_t
|
|
177
|
+
def __init__(self, toapp_lat_up: _Optional[_Union[NavLatLonUp, _Mapping]] = ..., toapp_pos_up: _Optional[_Union[NavPosUp, _Mapping]] = ..., todev_chl_line_data: _Optional[_Union[NavCHlLineData, _Mapping]] = ..., toapp_task_info: _Optional[_Union[NavTaskInfo, _Mapping]] = ..., toapp_opt_line_up: _Optional[_Union[NavOptLineUp, _Mapping]] = ..., toapp_opt_border_info: _Optional[_Union[NavOptiBorderInfo, _Mapping]] = ..., toapp_opt_obs_info: _Optional[_Union[NavOptObsInfo, _Mapping]] = ..., todev_task_info_ack: _Optional[_Union[NavResFrame, _Mapping]] = ..., todev_opt_border_info_ack: _Optional[_Union[NavResFrame, _Mapping]] = ..., todev_opt_obs_info_ack: _Optional[_Union[NavResFrame, _Mapping]] = ..., todev_opt_line_up_ack: _Optional[_Union[NavResFrame, _Mapping]] = ..., toapp_chgpileto: _Optional[_Union[chargePileType, _Mapping]] = ..., todev_sustask: _Optional[int] = ..., todev_rechgcmd: _Optional[int] = ..., todev_edgecmd: _Optional[int] = ..., todev_draw_border: _Optional[int] = ..., todev_draw_border_end: _Optional[int] = ..., todev_draw_obs: _Optional[int] = ..., todev_draw_obs_end: _Optional[int] = ..., todev_chl_line: _Optional[int] = ..., todev_chl_line_end: _Optional[int] = ..., todev_save_task: _Optional[int] = ..., todev_cancel_suscmd: _Optional[int] = ..., todev_reset_chg_pile: _Optional[int] = ..., todev_cancel_draw_cmd: _Optional[int] = ..., todev_one_touch_leave_pile: _Optional[int] = ..., todev_mow_task: _Optional[_Union[NavStartJob, _Mapping]] = ..., toapp_bstate: _Optional[_Union[NavBorderState, _Mapping]] = ..., todev_lat_up_ack: _Optional[int] = ..., todev_gethash: _Optional[_Union[NavGetHashList, _Mapping]] = ..., toapp_gethash_ack: _Optional[_Union[NavGetHashListAck, _Mapping]] = ..., todev_get_commondata: _Optional[_Union[NavGetCommData, _Mapping]] = ..., toapp_get_commondata_ack: _Optional[_Union[NavGetCommDataAck, _Mapping]] = ..., bidire_reqconver_path: _Optional[_Union[NavReqCoverPath, _Mapping]] = ..., toapp_zigzag: _Optional[_Union[NavUploadZigZagResult, _Mapping]] = ..., todev_zigzag_ack: _Optional[_Union[NavUploadZigZagResultAck, _Mapping]] = ..., todev_taskctrl: _Optional[_Union[NavTaskCtrl, _Mapping]] = ..., bidire_taskid: _Optional[_Union[NavTaskIdRw, _Mapping]] = ..., toapp_bp: _Optional[_Union[NavTaskBreakPoint, _Mapping]] = ..., todev_planjob_set: _Optional[_Union[NavPlanJobSet, _Mapping]] = ..., todev_unable_time_set: _Optional[_Union[NavUnableTimeSet, _Mapping]] = ..., simulation_cmd: _Optional[_Union[SimulationCmdData, _Mapping]] = ..., todev_work_report_update_cmd: _Optional[_Union[WorkReportUpdateCmd, _Mapping]] = ..., toapp_work_report_update_ack: _Optional[_Union[WorkReportUpdateAck, _Mapping]] = ..., todev_work_report_cmd: _Optional[_Union[WorkReportCmdData, _Mapping]] = ..., toapp_work_report_ack: _Optional[_Union[WorkReportInfoAck, _Mapping]] = ..., toapp_work_report_upload: _Optional[_Union[WorkReportInfoAck, _Mapping]] = ..., app_request_cover_paths: _Optional[_Union[app_request_cover_paths_t, _Mapping]] = ..., cover_path_upload: _Optional[_Union[cover_path_upload_t, _Mapping]] = ..., zone_start_precent: _Optional[_Union[zone_start_precent_t, _Mapping]] = ..., vision_ctrl: _Optional[_Union[vision_ctrl_msg, _Mapping]] = ..., nav_sys_param_cmd: _Optional[_Union[nav_sys_param_msg, _Mapping]] = ..., plan_task_execute: _Optional[_Union[nav_plan_task_execute, _Mapping]] = ..., toapp_costmap: _Optional[_Union[costmap_t, _Mapping]] = ..., plan_task_name_id: _Optional[_Union[plan_task_name_id_t, _Mapping]] = ..., all_plan_task: _Optional[_Union[nav_get_all_plan_task, _Mapping]] = ..., todev_taskctrl_ack: _Optional[_Union[NavTaskCtrlAck, _Mapping]] = ..., toapp_map_name_msg: _Optional[_Union[NavMapNameMsg, _Mapping]] = ..., todev_svg_msg: _Optional[_Union[svg_message_ack_t, _Mapping]] = ..., toapp_svg_msg: _Optional[_Union[svg_message_ack_t, _Mapping]] = ..., toapp_all_hash_name: _Optional[_Union[AppGetAllAreaHashName, _Mapping]] = ..., toapp_edge_points: _Optional[_Union[NavEdgePoints, _Mapping]] = ..., toapp_edge_points_ack: _Optional[_Union[NavEdgePointsAck, _Mapping]] = ..., toapp_manual_element: _Optional[_Union[ManualElementMessage, _Mapping]] = ...) -> None: ...
|
|
178
|
+
|
|
179
|
+
class NavBorderDataGet(_message.Message):
|
|
180
|
+
__slots__ = ["borderLen", "currentFrame", "jobId"]
|
|
181
|
+
BORDERLEN_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
borderLen: int
|
|
185
|
+
currentFrame: int
|
|
186
|
+
jobId: int
|
|
187
|
+
def __init__(self, jobId: _Optional[int] = ..., currentFrame: _Optional[int] = ..., borderLen: _Optional[int] = ...) -> None: ...
|
|
188
|
+
|
|
189
|
+
class NavBorderDataGetAck(_message.Message):
|
|
190
|
+
__slots__ = ["currentFrame", "jobId"]
|
|
191
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
currentFrame: int
|
|
194
|
+
jobId: int
|
|
195
|
+
def __init__(self, jobId: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
196
|
+
|
|
197
|
+
class NavBorderState(_message.Message):
|
|
198
|
+
__slots__ = ["bdstate"]
|
|
199
|
+
BDSTATE_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
bdstate: int
|
|
201
|
+
def __init__(self, bdstate: _Optional[int] = ...) -> None: ...
|
|
202
|
+
|
|
203
|
+
class NavCHlLineData(_message.Message):
|
|
204
|
+
__slots__ = ["channelLineLen", "currentFrame", "endJobRI", "startJobRI"]
|
|
205
|
+
CHANNELLINELEN_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
ENDJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
STARTJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
channelLineLen: int
|
|
210
|
+
currentFrame: int
|
|
211
|
+
endJobRI: int
|
|
212
|
+
startJobRI: int
|
|
213
|
+
def __init__(self, startJobRI: _Optional[int] = ..., endJobRI: _Optional[int] = ..., currentFrame: _Optional[int] = ..., channelLineLen: _Optional[int] = ...) -> None: ...
|
|
214
|
+
|
|
215
|
+
class NavCHlLineDataAck(_message.Message):
|
|
216
|
+
__slots__ = ["currentFrame", "endJobRI", "startJobRI"]
|
|
217
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
218
|
+
ENDJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
STARTJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
220
|
+
currentFrame: int
|
|
221
|
+
endJobRI: int
|
|
222
|
+
startJobRI: int
|
|
223
|
+
def __init__(self, startJobRI: _Optional[int] = ..., endJobRI: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
224
|
+
|
|
225
|
+
class NavEdgePoints(_message.Message):
|
|
226
|
+
__slots__ = ["Hash", "action", "currentFrame", "dataCouple", "result", "totalFrame", "type"]
|
|
227
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
228
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
229
|
+
DATACOUPLE_FIELD_NUMBER: _ClassVar[int]
|
|
230
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
231
|
+
Hash: int
|
|
232
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
233
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
234
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
235
|
+
action: int
|
|
236
|
+
currentFrame: int
|
|
237
|
+
dataCouple: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
238
|
+
result: int
|
|
239
|
+
totalFrame: int
|
|
240
|
+
type: int
|
|
241
|
+
def __init__(self, result: _Optional[int] = ..., action: _Optional[int] = ..., type: _Optional[int] = ..., Hash: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataCouple: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
242
|
+
|
|
243
|
+
class NavEdgePointsAck(_message.Message):
|
|
244
|
+
__slots__ = ["Hash", "action", "currentFrame", "result", "totalFrame", "type"]
|
|
245
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
246
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
247
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
248
|
+
Hash: int
|
|
249
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
250
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
251
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
252
|
+
action: int
|
|
253
|
+
currentFrame: int
|
|
254
|
+
result: int
|
|
255
|
+
totalFrame: int
|
|
256
|
+
type: int
|
|
257
|
+
def __init__(self, result: _Optional[int] = ..., action: _Optional[int] = ..., type: _Optional[int] = ..., Hash: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
258
|
+
|
|
259
|
+
class NavGetCommData(_message.Message):
|
|
260
|
+
__slots__ = ["action", "currentFrame", "dataHash", "hash", "paternalHashA", "paternalHashB", "pver", "reserved", "subCmd", "totalFrame", "type"]
|
|
261
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
262
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
263
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
264
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
265
|
+
PATERNALHASHA_FIELD_NUMBER: _ClassVar[int]
|
|
266
|
+
PATERNALHASHB_FIELD_NUMBER: _ClassVar[int]
|
|
267
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
268
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
269
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
270
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
action: int
|
|
273
|
+
currentFrame: int
|
|
274
|
+
dataHash: int
|
|
275
|
+
hash: int
|
|
276
|
+
paternalHashA: int
|
|
277
|
+
paternalHashB: int
|
|
278
|
+
pver: int
|
|
279
|
+
reserved: str
|
|
280
|
+
subCmd: int
|
|
281
|
+
totalFrame: int
|
|
282
|
+
type: int
|
|
283
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., action: _Optional[int] = ..., type: _Optional[int] = ..., hash: _Optional[int] = ..., paternalHashA: _Optional[int] = ..., paternalHashB: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., reserved: _Optional[str] = ...) -> None: ...
|
|
284
|
+
|
|
285
|
+
class NavGetCommDataAck(_message.Message):
|
|
286
|
+
__slots__ = ["Hash", "action", "currentFrame", "dataCouple", "dataHash", "dataLen", "nameTime", "paternalHashA", "paternalHashB", "pver", "reserved", "result", "subCmd", "totalFrame", "type"]
|
|
287
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
288
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
289
|
+
DATACOUPLE_FIELD_NUMBER: _ClassVar[int]
|
|
290
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
291
|
+
DATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
292
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
293
|
+
Hash: int
|
|
294
|
+
NAMETIME_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
PATERNALHASHA_FIELD_NUMBER: _ClassVar[int]
|
|
296
|
+
PATERNALHASHB_FIELD_NUMBER: _ClassVar[int]
|
|
297
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
298
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
299
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
300
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
301
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
302
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
303
|
+
action: int
|
|
304
|
+
currentFrame: int
|
|
305
|
+
dataCouple: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
306
|
+
dataHash: int
|
|
307
|
+
dataLen: int
|
|
308
|
+
nameTime: NavGetNameTime
|
|
309
|
+
paternalHashA: int
|
|
310
|
+
paternalHashB: int
|
|
311
|
+
pver: int
|
|
312
|
+
reserved: str
|
|
313
|
+
result: int
|
|
314
|
+
subCmd: int
|
|
315
|
+
totalFrame: int
|
|
316
|
+
type: int
|
|
317
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., result: _Optional[int] = ..., action: _Optional[int] = ..., type: _Optional[int] = ..., Hash: _Optional[int] = ..., paternalHashA: _Optional[int] = ..., paternalHashB: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., dataLen: _Optional[int] = ..., dataCouple: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ..., reserved: _Optional[str] = ..., nameTime: _Optional[_Union[NavGetNameTime, _Mapping]] = ...) -> None: ...
|
|
318
|
+
|
|
319
|
+
class NavGetHashList(_message.Message):
|
|
320
|
+
__slots__ = ["currentFrame", "dataHash", "pver", "reserved", "subCmd", "totalFrame"]
|
|
321
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
322
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
323
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
324
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
325
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
326
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
327
|
+
currentFrame: int
|
|
328
|
+
dataHash: int
|
|
329
|
+
pver: int
|
|
330
|
+
reserved: str
|
|
331
|
+
subCmd: int
|
|
332
|
+
totalFrame: int
|
|
333
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., reserved: _Optional[str] = ...) -> None: ...
|
|
334
|
+
|
|
335
|
+
class NavGetHashListAck(_message.Message):
|
|
336
|
+
__slots__ = ["currentFrame", "dataCouple", "dataHash", "hashLen", "pver", "reserved", "result", "subCmd", "totalFrame"]
|
|
337
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
338
|
+
DATACOUPLE_FIELD_NUMBER: _ClassVar[int]
|
|
339
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
340
|
+
HASHLEN_FIELD_NUMBER: _ClassVar[int]
|
|
341
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
342
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
343
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
344
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
345
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
346
|
+
currentFrame: int
|
|
347
|
+
dataCouple: _containers.RepeatedScalarFieldContainer[int]
|
|
348
|
+
dataHash: int
|
|
349
|
+
hashLen: int
|
|
350
|
+
pver: int
|
|
351
|
+
reserved: str
|
|
352
|
+
result: int
|
|
353
|
+
subCmd: int
|
|
354
|
+
totalFrame: int
|
|
355
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., hashLen: _Optional[int] = ..., reserved: _Optional[str] = ..., result: _Optional[int] = ..., dataCouple: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
356
|
+
|
|
357
|
+
class NavGetNameTime(_message.Message):
|
|
358
|
+
__slots__ = ["create_time", "modify_time", "name"]
|
|
359
|
+
CREATE_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
360
|
+
MODIFY_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
361
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
362
|
+
create_time: int
|
|
363
|
+
modify_time: int
|
|
364
|
+
name: str
|
|
365
|
+
def __init__(self, name: _Optional[str] = ..., create_time: _Optional[int] = ..., modify_time: _Optional[int] = ...) -> None: ...
|
|
366
|
+
|
|
367
|
+
class NavLatLonUp(_message.Message):
|
|
368
|
+
__slots__ = ["lat", "lon"]
|
|
369
|
+
LAT_FIELD_NUMBER: _ClassVar[int]
|
|
370
|
+
LON_FIELD_NUMBER: _ClassVar[int]
|
|
371
|
+
lat: float
|
|
372
|
+
lon: float
|
|
373
|
+
def __init__(self, lat: _Optional[float] = ..., lon: _Optional[float] = ...) -> None: ...
|
|
374
|
+
|
|
375
|
+
class NavMapNameMsg(_message.Message):
|
|
376
|
+
__slots__ = ["deviceId", "hash", "name", "result", "rw"]
|
|
377
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
378
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
379
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
380
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
381
|
+
RW_FIELD_NUMBER: _ClassVar[int]
|
|
382
|
+
deviceId: str
|
|
383
|
+
hash: int
|
|
384
|
+
name: str
|
|
385
|
+
result: int
|
|
386
|
+
rw: int
|
|
387
|
+
def __init__(self, rw: _Optional[int] = ..., hash: _Optional[int] = ..., name: _Optional[str] = ..., result: _Optional[int] = ..., deviceId: _Optional[str] = ...) -> None: ...
|
|
388
|
+
|
|
389
|
+
class NavObstiBorderDataGet(_message.Message):
|
|
390
|
+
__slots__ = ["currentFrame", "obstacleIndex", "obstaclesLen"]
|
|
391
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
392
|
+
OBSTACLEINDEX_FIELD_NUMBER: _ClassVar[int]
|
|
393
|
+
OBSTACLESLEN_FIELD_NUMBER: _ClassVar[int]
|
|
394
|
+
currentFrame: int
|
|
395
|
+
obstacleIndex: int
|
|
396
|
+
obstaclesLen: int
|
|
397
|
+
def __init__(self, obstacleIndex: _Optional[int] = ..., currentFrame: _Optional[int] = ..., obstaclesLen: _Optional[int] = ...) -> None: ...
|
|
398
|
+
|
|
399
|
+
class NavObstiBorderDataGetAck(_message.Message):
|
|
400
|
+
__slots__ = ["currentFrame", "obstacleIndex"]
|
|
401
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
402
|
+
OBSTACLEINDEX_FIELD_NUMBER: _ClassVar[int]
|
|
403
|
+
currentFrame: int
|
|
404
|
+
obstacleIndex: int
|
|
405
|
+
def __init__(self, obstacleIndex: _Optional[int] = ..., currentFrame: _Optional[int] = ...) -> None: ...
|
|
406
|
+
|
|
407
|
+
class NavOptLineUp(_message.Message):
|
|
408
|
+
__slots__ = ["allFrame", "channelDataLen", "currentFrame", "dc", "endJobRI", "startJobRI"]
|
|
409
|
+
ALLFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
410
|
+
CHANNELDATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
411
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
412
|
+
DC_FIELD_NUMBER: _ClassVar[int]
|
|
413
|
+
ENDJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
414
|
+
STARTJOBRI_FIELD_NUMBER: _ClassVar[int]
|
|
415
|
+
allFrame: int
|
|
416
|
+
channelDataLen: int
|
|
417
|
+
currentFrame: int
|
|
418
|
+
dc: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
419
|
+
endJobRI: int
|
|
420
|
+
startJobRI: int
|
|
421
|
+
def __init__(self, startJobRI: _Optional[int] = ..., endJobRI: _Optional[int] = ..., allFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., channelDataLen: _Optional[int] = ..., dc: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
422
|
+
|
|
423
|
+
class NavOptObsInfo(_message.Message):
|
|
424
|
+
__slots__ = ["allFrame", "currentFrame", "dc", "obstacleDataLen", "obstacleId"]
|
|
425
|
+
ALLFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
426
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
427
|
+
DC_FIELD_NUMBER: _ClassVar[int]
|
|
428
|
+
OBSTACLEDATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
429
|
+
OBSTACLEID_FIELD_NUMBER: _ClassVar[int]
|
|
430
|
+
allFrame: int
|
|
431
|
+
currentFrame: int
|
|
432
|
+
dc: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
433
|
+
obstacleDataLen: int
|
|
434
|
+
obstacleId: int
|
|
435
|
+
def __init__(self, obstacleId: _Optional[int] = ..., allFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., obstacleDataLen: _Optional[int] = ..., dc: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
436
|
+
|
|
437
|
+
class NavOptiBorderInfo(_message.Message):
|
|
438
|
+
__slots__ = ["allFrame", "borderDataLen", "currentFrame", "dc", "jobId"]
|
|
439
|
+
ALLFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
440
|
+
BORDERDATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
441
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
442
|
+
DC_FIELD_NUMBER: _ClassVar[int]
|
|
443
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
444
|
+
allFrame: int
|
|
445
|
+
borderDataLen: int
|
|
446
|
+
currentFrame: int
|
|
447
|
+
dc: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
448
|
+
jobId: int
|
|
449
|
+
def __init__(self, jobId: _Optional[int] = ..., allFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., borderDataLen: _Optional[int] = ..., dc: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
450
|
+
|
|
451
|
+
class NavPlanJobSet(_message.Message):
|
|
452
|
+
__slots__ = ["PlanIndex", "area", "day", "deviceId", "edgeMode", "endDate", "endTime", "id", "jobId", "jobName", "knifeHeight", "model", "planId", "pver", "remained_seconds", "requiredTime", "reserved", "result", "routeAngle", "routeModel", "routeSpacing", "speed", "startDate", "startTime", "subCmd", "taskId", "taskName", "totalPlanNum", "towardIncludedAngle", "towardMode", "triggerType", "ultrasonicBarrier", "userId", "version", "week", "weeks", "workTime", "zoneHashs"]
|
|
453
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
454
|
+
DAY_FIELD_NUMBER: _ClassVar[int]
|
|
455
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
456
|
+
EDGEMODE_FIELD_NUMBER: _ClassVar[int]
|
|
457
|
+
ENDDATE_FIELD_NUMBER: _ClassVar[int]
|
|
458
|
+
ENDTIME_FIELD_NUMBER: _ClassVar[int]
|
|
459
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
460
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
461
|
+
JOBNAME_FIELD_NUMBER: _ClassVar[int]
|
|
462
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
463
|
+
MODEL_FIELD_NUMBER: _ClassVar[int]
|
|
464
|
+
PLANID_FIELD_NUMBER: _ClassVar[int]
|
|
465
|
+
PLANINDEX_FIELD_NUMBER: _ClassVar[int]
|
|
466
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
467
|
+
PlanIndex: int
|
|
468
|
+
REMAINED_SECONDS_FIELD_NUMBER: _ClassVar[int]
|
|
469
|
+
REQUIREDTIME_FIELD_NUMBER: _ClassVar[int]
|
|
470
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
471
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
472
|
+
ROUTEANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
473
|
+
ROUTEMODEL_FIELD_NUMBER: _ClassVar[int]
|
|
474
|
+
ROUTESPACING_FIELD_NUMBER: _ClassVar[int]
|
|
475
|
+
SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
476
|
+
STARTDATE_FIELD_NUMBER: _ClassVar[int]
|
|
477
|
+
STARTTIME_FIELD_NUMBER: _ClassVar[int]
|
|
478
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
479
|
+
TASKID_FIELD_NUMBER: _ClassVar[int]
|
|
480
|
+
TASKNAME_FIELD_NUMBER: _ClassVar[int]
|
|
481
|
+
TOTALPLANNUM_FIELD_NUMBER: _ClassVar[int]
|
|
482
|
+
TOWARDINCLUDEDANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
483
|
+
TOWARDMODE_FIELD_NUMBER: _ClassVar[int]
|
|
484
|
+
TRIGGERTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
485
|
+
ULTRASONICBARRIER_FIELD_NUMBER: _ClassVar[int]
|
|
486
|
+
USERID_FIELD_NUMBER: _ClassVar[int]
|
|
487
|
+
VERSION_FIELD_NUMBER: _ClassVar[int]
|
|
488
|
+
WEEKS_FIELD_NUMBER: _ClassVar[int]
|
|
489
|
+
WEEK_FIELD_NUMBER: _ClassVar[int]
|
|
490
|
+
WORKTIME_FIELD_NUMBER: _ClassVar[int]
|
|
491
|
+
ZONEHASHS_FIELD_NUMBER: _ClassVar[int]
|
|
492
|
+
area: int
|
|
493
|
+
day: int
|
|
494
|
+
deviceId: str
|
|
495
|
+
edgeMode: int
|
|
496
|
+
endDate: str
|
|
497
|
+
endTime: str
|
|
498
|
+
id: str
|
|
499
|
+
jobId: str
|
|
500
|
+
jobName: str
|
|
501
|
+
knifeHeight: int
|
|
502
|
+
model: int
|
|
503
|
+
planId: str
|
|
504
|
+
pver: int
|
|
505
|
+
remained_seconds: int
|
|
506
|
+
requiredTime: int
|
|
507
|
+
reserved: str
|
|
508
|
+
result: int
|
|
509
|
+
routeAngle: int
|
|
510
|
+
routeModel: int
|
|
511
|
+
routeSpacing: int
|
|
512
|
+
speed: float
|
|
513
|
+
startDate: str
|
|
514
|
+
startTime: str
|
|
515
|
+
subCmd: int
|
|
516
|
+
taskId: str
|
|
517
|
+
taskName: str
|
|
518
|
+
totalPlanNum: int
|
|
519
|
+
towardIncludedAngle: int
|
|
520
|
+
towardMode: int
|
|
521
|
+
triggerType: int
|
|
522
|
+
ultrasonicBarrier: int
|
|
523
|
+
userId: str
|
|
524
|
+
version: str
|
|
525
|
+
week: int
|
|
526
|
+
weeks: _containers.RepeatedScalarFieldContainer[int]
|
|
527
|
+
workTime: int
|
|
528
|
+
zoneHashs: _containers.RepeatedScalarFieldContainer[int]
|
|
529
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., area: _Optional[int] = ..., workTime: _Optional[int] = ..., version: _Optional[str] = ..., id: _Optional[str] = ..., userId: _Optional[str] = ..., deviceId: _Optional[str] = ..., planId: _Optional[str] = ..., taskId: _Optional[str] = ..., jobId: _Optional[str] = ..., startTime: _Optional[str] = ..., endTime: _Optional[str] = ..., week: _Optional[int] = ..., knifeHeight: _Optional[int] = ..., model: _Optional[int] = ..., edgeMode: _Optional[int] = ..., requiredTime: _Optional[int] = ..., routeAngle: _Optional[int] = ..., routeModel: _Optional[int] = ..., routeSpacing: _Optional[int] = ..., ultrasonicBarrier: _Optional[int] = ..., totalPlanNum: _Optional[int] = ..., PlanIndex: _Optional[int] = ..., result: _Optional[int] = ..., speed: _Optional[float] = ..., taskName: _Optional[str] = ..., jobName: _Optional[str] = ..., zoneHashs: _Optional[_Iterable[int]] = ..., reserved: _Optional[str] = ..., startDate: _Optional[str] = ..., endDate: _Optional[str] = ..., triggerType: _Optional[int] = ..., day: _Optional[int] = ..., weeks: _Optional[_Iterable[int]] = ..., remained_seconds: _Optional[int] = ..., towardMode: _Optional[int] = ..., towardIncludedAngle: _Optional[int] = ...) -> None: ...
|
|
530
|
+
|
|
531
|
+
class NavPosUp(_message.Message):
|
|
532
|
+
__slots__ = ["age", "cHashId", "l2dfStars", "latStddev", "lonStddev", "posLevel", "posType", "stars", "status", "toward", "x", "y"]
|
|
533
|
+
AGE_FIELD_NUMBER: _ClassVar[int]
|
|
534
|
+
CHASHID_FIELD_NUMBER: _ClassVar[int]
|
|
535
|
+
L2DFSTARS_FIELD_NUMBER: _ClassVar[int]
|
|
536
|
+
LATSTDDEV_FIELD_NUMBER: _ClassVar[int]
|
|
537
|
+
LONSTDDEV_FIELD_NUMBER: _ClassVar[int]
|
|
538
|
+
POSLEVEL_FIELD_NUMBER: _ClassVar[int]
|
|
539
|
+
POSTYPE_FIELD_NUMBER: _ClassVar[int]
|
|
540
|
+
STARS_FIELD_NUMBER: _ClassVar[int]
|
|
541
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
542
|
+
TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
543
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
544
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
545
|
+
age: float
|
|
546
|
+
cHashId: int
|
|
547
|
+
l2dfStars: int
|
|
548
|
+
latStddev: float
|
|
549
|
+
lonStddev: float
|
|
550
|
+
posLevel: int
|
|
551
|
+
posType: int
|
|
552
|
+
stars: int
|
|
553
|
+
status: int
|
|
554
|
+
toward: int
|
|
555
|
+
x: float
|
|
556
|
+
y: float
|
|
557
|
+
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., status: _Optional[int] = ..., toward: _Optional[int] = ..., stars: _Optional[int] = ..., age: _Optional[float] = ..., latStddev: _Optional[float] = ..., lonStddev: _Optional[float] = ..., l2dfStars: _Optional[int] = ..., posType: _Optional[int] = ..., cHashId: _Optional[int] = ..., posLevel: _Optional[int] = ...) -> None: ...
|
|
558
|
+
|
|
559
|
+
class NavReqCoverPath(_message.Message):
|
|
560
|
+
__slots__ = ["UltraWave", "channelMode", "channelWidth", "edgeMode", "jobId", "jobMode", "jobVer", "knifeHeight", "pathHash", "pver", "reserved", "result", "speed", "subCmd", "toward", "toward_included_angle", "toward_mode", "zoneHashs"]
|
|
561
|
+
CHANNELMODE_FIELD_NUMBER: _ClassVar[int]
|
|
562
|
+
CHANNELWIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
563
|
+
EDGEMODE_FIELD_NUMBER: _ClassVar[int]
|
|
564
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
565
|
+
JOBMODE_FIELD_NUMBER: _ClassVar[int]
|
|
566
|
+
JOBVER_FIELD_NUMBER: _ClassVar[int]
|
|
567
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
568
|
+
PATHHASH_FIELD_NUMBER: _ClassVar[int]
|
|
569
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
570
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
571
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
572
|
+
SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
573
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
574
|
+
TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
575
|
+
TOWARD_INCLUDED_ANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
576
|
+
TOWARD_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
577
|
+
ULTRAWAVE_FIELD_NUMBER: _ClassVar[int]
|
|
578
|
+
UltraWave: int
|
|
579
|
+
ZONEHASHS_FIELD_NUMBER: _ClassVar[int]
|
|
580
|
+
channelMode: int
|
|
581
|
+
channelWidth: int
|
|
582
|
+
edgeMode: int
|
|
583
|
+
jobId: int
|
|
584
|
+
jobMode: int
|
|
585
|
+
jobVer: int
|
|
586
|
+
knifeHeight: int
|
|
587
|
+
pathHash: int
|
|
588
|
+
pver: int
|
|
589
|
+
reserved: str
|
|
590
|
+
result: int
|
|
591
|
+
speed: float
|
|
592
|
+
subCmd: int
|
|
593
|
+
toward: int
|
|
594
|
+
toward_included_angle: int
|
|
595
|
+
toward_mode: int
|
|
596
|
+
zoneHashs: _containers.RepeatedScalarFieldContainer[int]
|
|
597
|
+
def __init__(self, pver: _Optional[int] = ..., jobId: _Optional[int] = ..., jobVer: _Optional[int] = ..., jobMode: _Optional[int] = ..., subCmd: _Optional[int] = ..., edgeMode: _Optional[int] = ..., knifeHeight: _Optional[int] = ..., channelWidth: _Optional[int] = ..., UltraWave: _Optional[int] = ..., channelMode: _Optional[int] = ..., toward: _Optional[int] = ..., speed: _Optional[float] = ..., zoneHashs: _Optional[_Iterable[int]] = ..., pathHash: _Optional[int] = ..., reserved: _Optional[str] = ..., result: _Optional[int] = ..., toward_mode: _Optional[int] = ..., toward_included_angle: _Optional[int] = ...) -> None: ...
|
|
598
|
+
|
|
599
|
+
class NavResFrame(_message.Message):
|
|
600
|
+
__slots__ = ["frameid"]
|
|
601
|
+
FRAMEID_FIELD_NUMBER: _ClassVar[int]
|
|
602
|
+
frameid: int
|
|
603
|
+
def __init__(self, frameid: _Optional[int] = ...) -> None: ...
|
|
604
|
+
|
|
605
|
+
class NavStartJob(_message.Message):
|
|
606
|
+
__slots__ = ["UltraWave", "channelMode", "channelWidth", "jobId", "jobMode", "jobVer", "knifeHeight", "rainTactics", "speed"]
|
|
607
|
+
CHANNELMODE_FIELD_NUMBER: _ClassVar[int]
|
|
608
|
+
CHANNELWIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
609
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
610
|
+
JOBMODE_FIELD_NUMBER: _ClassVar[int]
|
|
611
|
+
JOBVER_FIELD_NUMBER: _ClassVar[int]
|
|
612
|
+
KNIFEHEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
613
|
+
RAINTACTICS_FIELD_NUMBER: _ClassVar[int]
|
|
614
|
+
SPEED_FIELD_NUMBER: _ClassVar[int]
|
|
615
|
+
ULTRAWAVE_FIELD_NUMBER: _ClassVar[int]
|
|
616
|
+
UltraWave: int
|
|
617
|
+
channelMode: int
|
|
618
|
+
channelWidth: int
|
|
619
|
+
jobId: int
|
|
620
|
+
jobMode: int
|
|
621
|
+
jobVer: int
|
|
622
|
+
knifeHeight: int
|
|
623
|
+
rainTactics: int
|
|
624
|
+
speed: float
|
|
625
|
+
def __init__(self, jobId: _Optional[int] = ..., jobVer: _Optional[int] = ..., jobMode: _Optional[int] = ..., rainTactics: _Optional[int] = ..., knifeHeight: _Optional[int] = ..., speed: _Optional[float] = ..., channelWidth: _Optional[int] = ..., UltraWave: _Optional[int] = ..., channelMode: _Optional[int] = ...) -> None: ...
|
|
626
|
+
|
|
627
|
+
class NavSysHashOverview(_message.Message):
|
|
628
|
+
__slots__ = ["commonhashOverview", "pathHashOverview"]
|
|
629
|
+
COMMONHASHOVERVIEW_FIELD_NUMBER: _ClassVar[int]
|
|
630
|
+
PATHHASHOVERVIEW_FIELD_NUMBER: _ClassVar[int]
|
|
631
|
+
commonhashOverview: int
|
|
632
|
+
pathHashOverview: int
|
|
633
|
+
def __init__(self, commonhashOverview: _Optional[int] = ..., pathHashOverview: _Optional[int] = ...) -> None: ...
|
|
634
|
+
|
|
635
|
+
class NavTaskBreakPoint(_message.Message):
|
|
636
|
+
__slots__ = ["action", "flag", "toward", "x", "y", "zoneHash"]
|
|
637
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
638
|
+
FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
639
|
+
TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
640
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
641
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
642
|
+
ZONEHASH_FIELD_NUMBER: _ClassVar[int]
|
|
643
|
+
action: int
|
|
644
|
+
flag: int
|
|
645
|
+
toward: int
|
|
646
|
+
x: float
|
|
647
|
+
y: float
|
|
648
|
+
zoneHash: int
|
|
649
|
+
def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., toward: _Optional[int] = ..., flag: _Optional[int] = ..., action: _Optional[int] = ..., zoneHash: _Optional[int] = ...) -> None: ...
|
|
650
|
+
|
|
651
|
+
class NavTaskCtrl(_message.Message):
|
|
652
|
+
__slots__ = ["action", "reserved", "result", "type"]
|
|
653
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
654
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
655
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
656
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
657
|
+
action: int
|
|
658
|
+
reserved: str
|
|
659
|
+
result: int
|
|
660
|
+
type: int
|
|
661
|
+
def __init__(self, type: _Optional[int] = ..., action: _Optional[int] = ..., result: _Optional[int] = ..., reserved: _Optional[str] = ...) -> None: ...
|
|
662
|
+
|
|
663
|
+
class NavTaskCtrlAck(_message.Message):
|
|
664
|
+
__slots__ = ["action", "nav_state", "reserved", "result", "type"]
|
|
665
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
666
|
+
NAV_STATE_FIELD_NUMBER: _ClassVar[int]
|
|
667
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
668
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
669
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
670
|
+
action: int
|
|
671
|
+
nav_state: int
|
|
672
|
+
reserved: str
|
|
673
|
+
result: int
|
|
674
|
+
type: int
|
|
675
|
+
def __init__(self, type: _Optional[int] = ..., action: _Optional[int] = ..., result: _Optional[int] = ..., nav_state: _Optional[int] = ..., reserved: _Optional[str] = ...) -> None: ...
|
|
676
|
+
|
|
677
|
+
class NavTaskIdRw(_message.Message):
|
|
678
|
+
__slots__ = ["pver", "reserved", "result", "subCmd", "taskId", "taskName"]
|
|
679
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
680
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
681
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
682
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
683
|
+
TASKID_FIELD_NUMBER: _ClassVar[int]
|
|
684
|
+
TASKNAME_FIELD_NUMBER: _ClassVar[int]
|
|
685
|
+
pver: int
|
|
686
|
+
reserved: str
|
|
687
|
+
result: int
|
|
688
|
+
subCmd: int
|
|
689
|
+
taskId: str
|
|
690
|
+
taskName: str
|
|
691
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., taskName: _Optional[str] = ..., taskId: _Optional[str] = ..., result: _Optional[int] = ..., reserved: _Optional[str] = ...) -> None: ...
|
|
692
|
+
|
|
693
|
+
class NavTaskInfo(_message.Message):
|
|
694
|
+
__slots__ = ["allFrame", "area", "currentFrame", "dc", "pathlen", "time"]
|
|
695
|
+
ALLFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
696
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
697
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
698
|
+
DC_FIELD_NUMBER: _ClassVar[int]
|
|
699
|
+
PATHLEN_FIELD_NUMBER: _ClassVar[int]
|
|
700
|
+
TIME_FIELD_NUMBER: _ClassVar[int]
|
|
701
|
+
allFrame: int
|
|
702
|
+
area: int
|
|
703
|
+
currentFrame: int
|
|
704
|
+
dc: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
705
|
+
pathlen: int
|
|
706
|
+
time: int
|
|
707
|
+
def __init__(self, area: _Optional[int] = ..., time: _Optional[int] = ..., allFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., pathlen: _Optional[int] = ..., dc: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
708
|
+
|
|
709
|
+
class NavTaskProgress(_message.Message):
|
|
710
|
+
__slots__ = ["taskProgress"]
|
|
711
|
+
TASKPROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
712
|
+
taskProgress: int
|
|
713
|
+
def __init__(self, taskProgress: _Optional[int] = ...) -> None: ...
|
|
714
|
+
|
|
715
|
+
class NavUnableTimeSet(_message.Message):
|
|
716
|
+
__slots__ = ["deviceId", "reserved", "result", "subCmd", "trigger", "unableEndTime", "unableStartTime"]
|
|
717
|
+
DEVICEID_FIELD_NUMBER: _ClassVar[int]
|
|
718
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
719
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
720
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
721
|
+
TRIGGER_FIELD_NUMBER: _ClassVar[int]
|
|
722
|
+
UNABLEENDTIME_FIELD_NUMBER: _ClassVar[int]
|
|
723
|
+
UNABLESTARTTIME_FIELD_NUMBER: _ClassVar[int]
|
|
724
|
+
deviceId: str
|
|
725
|
+
reserved: str
|
|
726
|
+
result: int
|
|
727
|
+
subCmd: int
|
|
728
|
+
trigger: int
|
|
729
|
+
unableEndTime: str
|
|
730
|
+
unableStartTime: str
|
|
731
|
+
def __init__(self, subCmd: _Optional[int] = ..., deviceId: _Optional[str] = ..., unableStartTime: _Optional[str] = ..., unableEndTime: _Optional[str] = ..., result: _Optional[int] = ..., reserved: _Optional[str] = ..., trigger: _Optional[int] = ...) -> None: ...
|
|
732
|
+
|
|
733
|
+
class NavUploadZigZagResult(_message.Message):
|
|
734
|
+
__slots__ = ["area", "channelMode", "channelModeId", "currentFrame", "currentHash", "currentZone", "currentZonePathId", "currentZonePathNum", "dataCouple", "dataHash", "dataLen", "jobId", "jobVer", "pver", "reserved", "result", "subCmd", "time", "totalFrame", "totalZoneNum"]
|
|
735
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
736
|
+
CHANNELMODEID_FIELD_NUMBER: _ClassVar[int]
|
|
737
|
+
CHANNELMODE_FIELD_NUMBER: _ClassVar[int]
|
|
738
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
739
|
+
CURRENTHASH_FIELD_NUMBER: _ClassVar[int]
|
|
740
|
+
CURRENTZONEPATHID_FIELD_NUMBER: _ClassVar[int]
|
|
741
|
+
CURRENTZONEPATHNUM_FIELD_NUMBER: _ClassVar[int]
|
|
742
|
+
CURRENTZONE_FIELD_NUMBER: _ClassVar[int]
|
|
743
|
+
DATACOUPLE_FIELD_NUMBER: _ClassVar[int]
|
|
744
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
745
|
+
DATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
746
|
+
JOBID_FIELD_NUMBER: _ClassVar[int]
|
|
747
|
+
JOBVER_FIELD_NUMBER: _ClassVar[int]
|
|
748
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
749
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
750
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
751
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
752
|
+
TIME_FIELD_NUMBER: _ClassVar[int]
|
|
753
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
754
|
+
TOTALZONENUM_FIELD_NUMBER: _ClassVar[int]
|
|
755
|
+
area: int
|
|
756
|
+
channelMode: int
|
|
757
|
+
channelModeId: int
|
|
758
|
+
currentFrame: int
|
|
759
|
+
currentHash: int
|
|
760
|
+
currentZone: int
|
|
761
|
+
currentZonePathId: int
|
|
762
|
+
currentZonePathNum: int
|
|
763
|
+
dataCouple: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
764
|
+
dataHash: int
|
|
765
|
+
dataLen: int
|
|
766
|
+
jobId: int
|
|
767
|
+
jobVer: int
|
|
768
|
+
pver: int
|
|
769
|
+
reserved: str
|
|
770
|
+
result: int
|
|
771
|
+
subCmd: int
|
|
772
|
+
time: int
|
|
773
|
+
totalFrame: int
|
|
774
|
+
totalZoneNum: int
|
|
775
|
+
def __init__(self, pver: _Optional[int] = ..., jobId: _Optional[int] = ..., jobVer: _Optional[int] = ..., result: _Optional[int] = ..., area: _Optional[int] = ..., time: _Optional[int] = ..., totalZoneNum: _Optional[int] = ..., currentZonePathNum: _Optional[int] = ..., currentZonePathId: _Optional[int] = ..., currentZone: _Optional[int] = ..., currentHash: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., channelMode: _Optional[int] = ..., channelModeId: _Optional[int] = ..., dataHash: _Optional[int] = ..., dataLen: _Optional[int] = ..., reserved: _Optional[str] = ..., dataCouple: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ..., subCmd: _Optional[int] = ...) -> None: ...
|
|
776
|
+
|
|
777
|
+
class NavUploadZigZagResultAck(_message.Message):
|
|
778
|
+
__slots__ = ["currentFrame", "currentHash", "currentZone", "dataHash", "pver", "reserved", "subCmd", "totalFrame"]
|
|
779
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
780
|
+
CURRENTHASH_FIELD_NUMBER: _ClassVar[int]
|
|
781
|
+
CURRENTZONE_FIELD_NUMBER: _ClassVar[int]
|
|
782
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
783
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
784
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
785
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
786
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
787
|
+
currentFrame: int
|
|
788
|
+
currentHash: int
|
|
789
|
+
currentZone: int
|
|
790
|
+
dataHash: int
|
|
791
|
+
pver: int
|
|
792
|
+
reserved: str
|
|
793
|
+
subCmd: int
|
|
794
|
+
totalFrame: int
|
|
795
|
+
def __init__(self, pver: _Optional[int] = ..., currentZone: _Optional[int] = ..., currentHash: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., reserved: _Optional[str] = ..., subCmd: _Optional[int] = ...) -> None: ...
|
|
796
|
+
|
|
797
|
+
class SimulationCmdData(_message.Message):
|
|
798
|
+
__slots__ = ["param_id", "param_value", "subCmd"]
|
|
799
|
+
PARAM_ID_FIELD_NUMBER: _ClassVar[int]
|
|
800
|
+
PARAM_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
801
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
802
|
+
param_id: int
|
|
803
|
+
param_value: _containers.RepeatedScalarFieldContainer[int]
|
|
804
|
+
subCmd: int
|
|
805
|
+
def __init__(self, subCmd: _Optional[int] = ..., param_id: _Optional[int] = ..., param_value: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
806
|
+
|
|
807
|
+
class WorkReportCmdData(_message.Message):
|
|
808
|
+
__slots__ = ["getInfoNum", "subCmd"]
|
|
809
|
+
GETINFONUM_FIELD_NUMBER: _ClassVar[int]
|
|
810
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
811
|
+
getInfoNum: int
|
|
812
|
+
subCmd: int
|
|
813
|
+
def __init__(self, subCmd: _Optional[int] = ..., getInfoNum: _Optional[int] = ...) -> None: ...
|
|
814
|
+
|
|
815
|
+
class WorkReportInfoAck(_message.Message):
|
|
816
|
+
__slots__ = ["current_ack_num", "end_work_time", "height_of_knife", "interrupt_flag", "job_content", "start_work_time", "total_ack_num", "work_ares", "work_progress", "work_result", "work_time_used", "work_type"]
|
|
817
|
+
CURRENT_ACK_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
818
|
+
END_WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
819
|
+
HEIGHT_OF_KNIFE_FIELD_NUMBER: _ClassVar[int]
|
|
820
|
+
INTERRUPT_FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
821
|
+
JOB_CONTENT_FIELD_NUMBER: _ClassVar[int]
|
|
822
|
+
START_WORK_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
823
|
+
TOTAL_ACK_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
824
|
+
WORK_ARES_FIELD_NUMBER: _ClassVar[int]
|
|
825
|
+
WORK_PROGRESS_FIELD_NUMBER: _ClassVar[int]
|
|
826
|
+
WORK_RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
827
|
+
WORK_TIME_USED_FIELD_NUMBER: _ClassVar[int]
|
|
828
|
+
WORK_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
829
|
+
current_ack_num: int
|
|
830
|
+
end_work_time: int
|
|
831
|
+
height_of_knife: int
|
|
832
|
+
interrupt_flag: bool
|
|
833
|
+
job_content: int
|
|
834
|
+
start_work_time: int
|
|
835
|
+
total_ack_num: int
|
|
836
|
+
work_ares: float
|
|
837
|
+
work_progress: int
|
|
838
|
+
work_result: int
|
|
839
|
+
work_time_used: int
|
|
840
|
+
work_type: int
|
|
841
|
+
def __init__(self, interrupt_flag: bool = ..., start_work_time: _Optional[int] = ..., end_work_time: _Optional[int] = ..., work_time_used: _Optional[int] = ..., work_ares: _Optional[float] = ..., work_progress: _Optional[int] = ..., height_of_knife: _Optional[int] = ..., work_type: _Optional[int] = ..., work_result: _Optional[int] = ..., total_ack_num: _Optional[int] = ..., current_ack_num: _Optional[int] = ..., job_content: _Optional[int] = ...) -> None: ...
|
|
842
|
+
|
|
843
|
+
class WorkReportUpdateAck(_message.Message):
|
|
844
|
+
__slots__ = ["info_num", "update_flag"]
|
|
845
|
+
INFO_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
846
|
+
UPDATE_FLAG_FIELD_NUMBER: _ClassVar[int]
|
|
847
|
+
info_num: int
|
|
848
|
+
update_flag: bool
|
|
849
|
+
def __init__(self, update_flag: bool = ..., info_num: _Optional[int] = ...) -> None: ...
|
|
850
|
+
|
|
851
|
+
class WorkReportUpdateCmd(_message.Message):
|
|
852
|
+
__slots__ = ["subCmd"]
|
|
853
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
854
|
+
subCmd: int
|
|
855
|
+
def __init__(self, subCmd: _Optional[int] = ...) -> None: ...
|
|
856
|
+
|
|
857
|
+
class app_request_cover_paths_t(_message.Message):
|
|
858
|
+
__slots__ = ["currentFrame", "dataHash", "hash_list", "pver", "reserved", "subCmd", "totalFrame", "transaction_id"]
|
|
859
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
860
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
861
|
+
HASH_LIST_FIELD_NUMBER: _ClassVar[int]
|
|
862
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
863
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
864
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
865
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
866
|
+
TRANSACTION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
867
|
+
currentFrame: int
|
|
868
|
+
dataHash: int
|
|
869
|
+
hash_list: _containers.RepeatedScalarFieldContainer[int]
|
|
870
|
+
pver: int
|
|
871
|
+
reserved: _containers.RepeatedScalarFieldContainer[int]
|
|
872
|
+
subCmd: int
|
|
873
|
+
totalFrame: int
|
|
874
|
+
transaction_id: int
|
|
875
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., transaction_id: _Optional[int] = ..., reserved: _Optional[_Iterable[int]] = ..., hash_list: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
876
|
+
|
|
877
|
+
class area_hash_name(_message.Message):
|
|
878
|
+
__slots__ = ["hash", "name"]
|
|
879
|
+
HASH_FIELD_NUMBER: _ClassVar[int]
|
|
880
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
881
|
+
hash: int
|
|
882
|
+
name: str
|
|
883
|
+
def __init__(self, hash: _Optional[int] = ..., name: _Optional[str] = ...) -> None: ...
|
|
884
|
+
|
|
885
|
+
class chargePileType(_message.Message):
|
|
886
|
+
__slots__ = ["toward", "x", "y"]
|
|
887
|
+
TOWARD_FIELD_NUMBER: _ClassVar[int]
|
|
888
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
889
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
890
|
+
toward: int
|
|
891
|
+
x: float
|
|
892
|
+
y: float
|
|
893
|
+
def __init__(self, toward: _Optional[int] = ..., x: _Optional[float] = ..., y: _Optional[float] = ...) -> None: ...
|
|
894
|
+
|
|
895
|
+
class costmap_t(_message.Message):
|
|
896
|
+
__slots__ = ["center_x", "center_y", "costmap", "height", "res", "width", "yaw"]
|
|
897
|
+
CENTER_X_FIELD_NUMBER: _ClassVar[int]
|
|
898
|
+
CENTER_Y_FIELD_NUMBER: _ClassVar[int]
|
|
899
|
+
COSTMAP_FIELD_NUMBER: _ClassVar[int]
|
|
900
|
+
HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
901
|
+
RES_FIELD_NUMBER: _ClassVar[int]
|
|
902
|
+
WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
903
|
+
YAW_FIELD_NUMBER: _ClassVar[int]
|
|
904
|
+
center_x: float
|
|
905
|
+
center_y: float
|
|
906
|
+
costmap: _containers.RepeatedScalarFieldContainer[int]
|
|
907
|
+
height: int
|
|
908
|
+
res: float
|
|
909
|
+
width: int
|
|
910
|
+
yaw: float
|
|
911
|
+
def __init__(self, width: _Optional[int] = ..., height: _Optional[int] = ..., center_x: _Optional[float] = ..., center_y: _Optional[float] = ..., yaw: _Optional[float] = ..., res: _Optional[float] = ..., costmap: _Optional[_Iterable[int]] = ...) -> None: ...
|
|
912
|
+
|
|
913
|
+
class cover_path_packet_t(_message.Message):
|
|
914
|
+
__slots__ = ["dataCouple", "path_cur", "path_hash", "path_total", "path_type", "zone_hash"]
|
|
915
|
+
DATACOUPLE_FIELD_NUMBER: _ClassVar[int]
|
|
916
|
+
PATH_CUR_FIELD_NUMBER: _ClassVar[int]
|
|
917
|
+
PATH_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
918
|
+
PATH_TOTAL_FIELD_NUMBER: _ClassVar[int]
|
|
919
|
+
PATH_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
920
|
+
ZONE_HASH_FIELD_NUMBER: _ClassVar[int]
|
|
921
|
+
dataCouple: _containers.RepeatedCompositeFieldContainer[_common_pb2.CommDataCouple]
|
|
922
|
+
path_cur: int
|
|
923
|
+
path_hash: int
|
|
924
|
+
path_total: int
|
|
925
|
+
path_type: int
|
|
926
|
+
zone_hash: int
|
|
927
|
+
def __init__(self, path_hash: _Optional[int] = ..., path_type: _Optional[int] = ..., path_total: _Optional[int] = ..., path_cur: _Optional[int] = ..., zone_hash: _Optional[int] = ..., dataCouple: _Optional[_Iterable[_Union[_common_pb2.CommDataCouple, _Mapping]]] = ...) -> None: ...
|
|
928
|
+
|
|
929
|
+
class cover_path_upload_t(_message.Message):
|
|
930
|
+
__slots__ = ["area", "currentFrame", "dataHash", "dataLen", "path_packets", "pver", "reserved", "result", "subCmd", "time", "totalFrame", "total_path_num", "transaction_id", "valid_path_num"]
|
|
931
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
932
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
933
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
934
|
+
DATALEN_FIELD_NUMBER: _ClassVar[int]
|
|
935
|
+
PATH_PACKETS_FIELD_NUMBER: _ClassVar[int]
|
|
936
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
937
|
+
RESERVED_FIELD_NUMBER: _ClassVar[int]
|
|
938
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
939
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
940
|
+
TIME_FIELD_NUMBER: _ClassVar[int]
|
|
941
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
942
|
+
TOTAL_PATH_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
943
|
+
TRANSACTION_ID_FIELD_NUMBER: _ClassVar[int]
|
|
944
|
+
VALID_PATH_NUM_FIELD_NUMBER: _ClassVar[int]
|
|
945
|
+
area: int
|
|
946
|
+
currentFrame: int
|
|
947
|
+
dataHash: int
|
|
948
|
+
dataLen: int
|
|
949
|
+
path_packets: _containers.RepeatedCompositeFieldContainer[cover_path_packet_t]
|
|
950
|
+
pver: int
|
|
951
|
+
reserved: _containers.RepeatedScalarFieldContainer[int]
|
|
952
|
+
result: int
|
|
953
|
+
subCmd: int
|
|
954
|
+
time: int
|
|
955
|
+
totalFrame: int
|
|
956
|
+
total_path_num: int
|
|
957
|
+
transaction_id: int
|
|
958
|
+
valid_path_num: int
|
|
959
|
+
def __init__(self, pver: _Optional[int] = ..., result: _Optional[int] = ..., subCmd: _Optional[int] = ..., area: _Optional[int] = ..., time: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., total_path_num: _Optional[int] = ..., valid_path_num: _Optional[int] = ..., dataHash: _Optional[int] = ..., transaction_id: _Optional[int] = ..., reserved: _Optional[_Iterable[int]] = ..., dataLen: _Optional[int] = ..., path_packets: _Optional[_Iterable[_Union[cover_path_packet_t, _Mapping]]] = ...) -> None: ...
|
|
960
|
+
|
|
961
|
+
class nav_get_all_plan_task(_message.Message):
|
|
962
|
+
__slots__ = ["tasks"]
|
|
963
|
+
TASKS_FIELD_NUMBER: _ClassVar[int]
|
|
964
|
+
tasks: _containers.RepeatedCompositeFieldContainer[plan_task_name_id_t]
|
|
965
|
+
def __init__(self, tasks: _Optional[_Iterable[_Union[plan_task_name_id_t, _Mapping]]] = ...) -> None: ...
|
|
966
|
+
|
|
967
|
+
class nav_plan_task_execute(_message.Message):
|
|
968
|
+
__slots__ = ["id", "name", "result", "subCmd"]
|
|
969
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
970
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
971
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
972
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
973
|
+
id: str
|
|
974
|
+
name: str
|
|
975
|
+
result: int
|
|
976
|
+
subCmd: int
|
|
977
|
+
def __init__(self, subCmd: _Optional[int] = ..., id: _Optional[str] = ..., name: _Optional[str] = ..., result: _Optional[int] = ...) -> None: ...
|
|
978
|
+
|
|
979
|
+
class nav_sys_param_msg(_message.Message):
|
|
980
|
+
__slots__ = ["context", "id", "rw"]
|
|
981
|
+
CONTEXT_FIELD_NUMBER: _ClassVar[int]
|
|
982
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
983
|
+
RW_FIELD_NUMBER: _ClassVar[int]
|
|
984
|
+
context: int
|
|
985
|
+
id: int
|
|
986
|
+
rw: int
|
|
987
|
+
def __init__(self, rw: _Optional[int] = ..., id: _Optional[int] = ..., context: _Optional[int] = ...) -> None: ...
|
|
988
|
+
|
|
989
|
+
class plan_task_name_id_t(_message.Message):
|
|
990
|
+
__slots__ = ["id", "name"]
|
|
991
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
992
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
993
|
+
id: str
|
|
994
|
+
name: str
|
|
995
|
+
def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
|
|
996
|
+
|
|
997
|
+
class svg_message_ack_t(_message.Message):
|
|
998
|
+
__slots__ = ["currentFrame", "dataHash", "paternalHashA", "pver", "result", "subCmd", "svg_message", "totalFrame", "type"]
|
|
999
|
+
CURRENTFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
1000
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
1001
|
+
PATERNALHASHA_FIELD_NUMBER: _ClassVar[int]
|
|
1002
|
+
PVER_FIELD_NUMBER: _ClassVar[int]
|
|
1003
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
1004
|
+
SUBCMD_FIELD_NUMBER: _ClassVar[int]
|
|
1005
|
+
SVG_MESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
1006
|
+
TOTALFRAME_FIELD_NUMBER: _ClassVar[int]
|
|
1007
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1008
|
+
currentFrame: int
|
|
1009
|
+
dataHash: int
|
|
1010
|
+
paternalHashA: int
|
|
1011
|
+
pver: int
|
|
1012
|
+
result: int
|
|
1013
|
+
subCmd: int
|
|
1014
|
+
svg_message: svg_message_t
|
|
1015
|
+
totalFrame: int
|
|
1016
|
+
type: int
|
|
1017
|
+
def __init__(self, pver: _Optional[int] = ..., subCmd: _Optional[int] = ..., totalFrame: _Optional[int] = ..., currentFrame: _Optional[int] = ..., dataHash: _Optional[int] = ..., paternalHashA: _Optional[int] = ..., type: _Optional[int] = ..., result: _Optional[int] = ..., svg_message: _Optional[_Union[svg_message_t, _Mapping]] = ...) -> None: ...
|
|
1018
|
+
|
|
1019
|
+
class svg_message_t(_message.Message):
|
|
1020
|
+
__slots__ = ["base_height_m", "base_height_pix", "base_width_m", "base_width_pix", "data_count", "hide_svg", "name_count", "rotate", "scale", "svg_file_data", "svg_file_name", "x_move", "y_move"]
|
|
1021
|
+
BASE_HEIGHT_M_FIELD_NUMBER: _ClassVar[int]
|
|
1022
|
+
BASE_HEIGHT_PIX_FIELD_NUMBER: _ClassVar[int]
|
|
1023
|
+
BASE_WIDTH_M_FIELD_NUMBER: _ClassVar[int]
|
|
1024
|
+
BASE_WIDTH_PIX_FIELD_NUMBER: _ClassVar[int]
|
|
1025
|
+
DATA_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
1026
|
+
HIDE_SVG_FIELD_NUMBER: _ClassVar[int]
|
|
1027
|
+
NAME_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
1028
|
+
ROTATE_FIELD_NUMBER: _ClassVar[int]
|
|
1029
|
+
SCALE_FIELD_NUMBER: _ClassVar[int]
|
|
1030
|
+
SVG_FILE_DATA_FIELD_NUMBER: _ClassVar[int]
|
|
1031
|
+
SVG_FILE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
1032
|
+
X_MOVE_FIELD_NUMBER: _ClassVar[int]
|
|
1033
|
+
Y_MOVE_FIELD_NUMBER: _ClassVar[int]
|
|
1034
|
+
base_height_m: float
|
|
1035
|
+
base_height_pix: int
|
|
1036
|
+
base_width_m: float
|
|
1037
|
+
base_width_pix: int
|
|
1038
|
+
data_count: int
|
|
1039
|
+
hide_svg: bool
|
|
1040
|
+
name_count: int
|
|
1041
|
+
rotate: float
|
|
1042
|
+
scale: float
|
|
1043
|
+
svg_file_data: str
|
|
1044
|
+
svg_file_name: str
|
|
1045
|
+
x_move: float
|
|
1046
|
+
y_move: float
|
|
1047
|
+
def __init__(self, x_move: _Optional[float] = ..., y_move: _Optional[float] = ..., scale: _Optional[float] = ..., rotate: _Optional[float] = ..., base_width_m: _Optional[float] = ..., base_height_m: _Optional[float] = ..., base_width_pix: _Optional[int] = ..., base_height_pix: _Optional[int] = ..., svg_file_name: _Optional[str] = ..., svg_file_data: _Optional[str] = ..., name_count: _Optional[int] = ..., data_count: _Optional[int] = ..., hide_svg: bool = ...) -> None: ...
|
|
1048
|
+
|
|
1049
|
+
class vision_ctrl_msg(_message.Message):
|
|
1050
|
+
__slots__ = ["cmd", "type"]
|
|
1051
|
+
CMD_FIELD_NUMBER: _ClassVar[int]
|
|
1052
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1053
|
+
cmd: int
|
|
1054
|
+
type: int
|
|
1055
|
+
def __init__(self, type: _Optional[int] = ..., cmd: _Optional[int] = ...) -> None: ...
|
|
1056
|
+
|
|
1057
|
+
class zone_start_precent_t(_message.Message):
|
|
1058
|
+
__slots__ = ["dataHash", "index", "x", "y"]
|
|
1059
|
+
DATAHASH_FIELD_NUMBER: _ClassVar[int]
|
|
1060
|
+
INDEX_FIELD_NUMBER: _ClassVar[int]
|
|
1061
|
+
X_FIELD_NUMBER: _ClassVar[int]
|
|
1062
|
+
Y_FIELD_NUMBER: _ClassVar[int]
|
|
1063
|
+
dataHash: int
|
|
1064
|
+
index: int
|
|
1065
|
+
x: float
|
|
1066
|
+
y: float
|
|
1067
|
+
def __init__(self, dataHash: _Optional[int] = ..., x: _Optional[float] = ..., y: _Optional[float] = ..., index: _Optional[int] = ...) -> None: ...
|