You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to get the real-time map and path from a vacuum using the LASER Robot Vacuum API.
After checking the available instruction set I saw request and path_data, however request does not seem to change anything and path_data is always empty.
Running the code:
commands = {
"commands": [
{
"code": "request",
"value": "get_both",
}
]
}
print("Sending command...")
result = cloud.sendcommand(DEVICE_ID,commands)
print("Results\n:", result)
# Display Status of Device
result = cloud.getstatus(DEVICE_ID)
print("Status of device:\n", result
I'm trying to get real-time map and path data
I'm using a Lefant M1 Robot Vacuum.
It's possible to get the real-time map and path from a vacuum using the LASER Robot Vacuum API.
After checking the available instruction set I saw
request
andpath_data
, howeverrequest
does not seem to change anything andpath_data
is always empty.Running the code:
Outputs:
The text was updated successfully, but these errors were encountered: