Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct errors in the newly added device. #362

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2213,7 +2213,7 @@ Send control commands to physical devices and virtual infrared remote devices.
| Robot Vacuum Cleaner K10+ Pro Combo | command | pause | default | pause cleaning |
| Robot Vacuum Cleaner K10+ Pro Combo | command | dock | default | return to charging dock |
| Robot Vacuum Cleaner K10+ Pro Combo | command | setVolume | `{0-100}` | set the robot volume |
| Robot Vacuum Cleaner K10+ Pro Combo | command | changeParam | {"fanLevel": fan_level_int, "waterLevel": water_level_int, "times": clean_cycle_int} | change clean parameters. `fan_level_int`, the vacuum level, `1-4`; `water_level_int`, the mop moisture level, `1-2`; `times`, the number of cycles, `1-2639999`, in theory. |
| Robot Vacuum Cleaner K10+ Pro Combo | command | changeParam | {"fanLevel": fan_level_int, "times": clean_cycle_int} | change clean parameters. `fan_level_int`, the vacuum level, `1-4`; `times`, the number of cycles, `1-2639999`, in theory. |


##### Floor Cleaning Robot S10
Expand Down Expand Up @@ -4068,8 +4068,7 @@ When an event gets triggered, SwitchBot server will send a `POST` request to the
| deviceType | String | the type of the device |
| deviceMac | String | the MAC address of the device |
| power | String | the power state of the device |
| mode | Integer | the current mode. `1`, level 4; `2`, level 3; `3`, level 2; `4`, level 1; `5`, humidity mode; `6`, sleep mode; `7`, auto mode; `8`, drying mode |
| drying | Boolean | determines if the device is drying its filter or not |
| mode | Integer | the current mode. `1`, normal or fan mode; `2`, auto mode; `3`, sleep mode; `4`, pet mode |
| childLock | Integer | child lock. `0`, disabled; `1`, enabled |
| timeOfSample | Long | the time stamp when the event is sent |

Expand Down Expand Up @@ -4098,8 +4097,7 @@ When an event gets triggered, SwitchBot server will send a `POST` request to the
| deviceType | String | the type of the device |
| deviceMac | String | the MAC address of the device |
| power | String | the power state of the device |
| mode | Integer | the current mode. `1`, level 4; `2`, level 3; `3`, level 2; `4`, level 1; `5`, humidity mode; `6`, sleep mode; `7`, auto mode; `8`, drying mode |
| drying | Boolean | determines if the device is drying its filter or not |
| mode | Integer | the current mode. `1`, normal or fan mode; `2`, auto mode; `3`, sleep mode; `4`, pet mode |
| childLock | Integer | child lock. `0`, disabled; `1`, enabled |
| timeOfSample | Long | the time stamp when the event is sent |

Expand Down Expand Up @@ -4128,8 +4126,7 @@ When an event gets triggered, SwitchBot server will send a `POST` request to the
| deviceType | String | the type of the device |
| deviceMac | String | the MAC address of the device |
| power | String | the power state of the device |
| mode | Integer | the current mode. `1`, level 4; `2`, level 3; `3`, level 2; `4`, level 1; `5`, humidity mode; `6`, sleep mode; `7`, auto mode; `8`, drying mode |
| drying | Boolean | determines if the device is drying its filter or not |
| mode | Integer | the current mode. `1`, normal or fan mode; `2`, auto mode; `3`, sleep mode; `4`, pet mode |
| childLock | Integer | child lock. `0`, disabled; `1`, enabled |
| timeOfSample | Long | the time stamp when the event is sent |

Expand Down Expand Up @@ -4158,8 +4155,7 @@ When an event gets triggered, SwitchBot server will send a `POST` request to the
| deviceType | String | the type of the device |
| deviceMac | String | the MAC address of the device |
| power | String | the power state of the device |
| mode | Integer | the current mode. `1`, level 4; `2`, level 3; `3`, level 2; `4`, level 1; `5`, humidity mode; `6`, sleep mode; `7`, auto mode; `8`, drying mode |
| drying | Boolean | determines if the device is drying its filter or not |
| mode | Integer | the current mode. `1`, normal or fan mode; `2`, auto mode; `3`, sleep mode; `4`, pet mode |
| childLock | Integer | child lock. `0`, disabled; `1`, enabled |
| timeOfSample | Long | the time stamp when the event is sent |

Expand Down