Skip to content

Commit

Permalink
V1.2.1 - See CHANGELOG.md for details
Browse files Browse the repository at this point in the history
  • Loading branch information
RMCob committed Mar 30, 2022
1 parent 18ef6a8 commit 043bfec
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All changes to the software will be documented here.

## V1.2.1
- Fixed typos in README.md

## V1.2.0
- Changed the BatteryCheck algorithm to not pound the Wyze servers so much. There are now 2 referesh intervals specified, one for when the vacuum is busy or has less than 100% charge, and one for when the vacuum is idle with 100% charge.
- Changed the refresh interval specifications on the Settings page (and in config.json) from milliseconds to seconds. If you are updating this plugin be sure to go to the Settings page and change the value for statusCheckRefreshInterval to be in seconds.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Supported devices will be discovered and added to Homebridge automatically.
* **`mfaCode`** – Only required for the initial login if you have two-factor authentication enabled for your account. This is typically a 6-digit code provided by your authenticator app.
* **`statusCheckRefreshInterval`** – Defines how often the status of the vacuum will be polled in seconds after sweeping has started (e.g., `"statusCheckRefreshInterval": 60` will check your devices' status every 60 seconds). Defaults to 30 seconds.
* **`idleBatteryCheckRefreshInterval`** – Defines how often to check the battery level of the vacuum when it is idle and the battery level = 100. (e.g., `"idleBatteryCheckRefreshInterval": 2700` will check the battery level every 45 minutes. Defaults to 1800 seconds (30 minutes).
* **`busyBatteryCheckRefreshInterval`** &ndash; Defines how often to check the battery level of the vacuum when it is busy or the battery level < 100. (e.g., `"idleBatteryCheckRefreshInterval": 2700` will check the battery level every 45 minutes. Defaults to 1800 seconds (30 minutes).
* **`busyBatteryCheckRefreshInterval`** &ndash; Defines how often to check the battery level of the vacuum when it is busy or the battery level < 100. (e.g., `"busyBatteryCheckRefreshInterval": 60` will check the battery level every minute. Defaults to 120 seconds (2 minutes).

## Other Info

Expand Down
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": false,
"displayName": "Homebridge Wyze RoboVac",
"name": "homebridge-wyze-robovac",
"version": "1.2.0",
"version": "1.2.1",
"description": "Basic control of a Wyze Robot Vacuum.",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ npm audit
if npm run lint; then
if npm run build; then
git add .
npm version minor -m "$1" --force
npm version patch -m "$1" --force
npm publish --tag latest
git commit -m "$1"
git push "https://github.com/RMCob/homebridge-wyze-robovac.git" master --tags
Expand Down

0 comments on commit 043bfec

Please sign in to comment.