robovac_set_clean_speed
Adjust the suction speed of Eufy RoboVac vacuum cleaners by setting it to STANDARD, BOOST_IQ, MAX, or NO_SUCTION for customized cleaning performance.
Instructions
Set the suction speed of the robovac
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| speed | Yes | The cleaning speed to set |
Input Schema (JSON Schema)
{
"properties": {
"speed": {
"description": "The cleaning speed to set",
"enum": [
"STANDARD",
"BOOST_IQ",
"MAX",
"NO_SUCTION"
],
"type": "string"
}
},
"required": [
"speed"
],
"type": "object"
}