Skip to content

Commit

Permalink
Release 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbungle64 committed Dec 6, 2023
1 parent 8106fda commit 79173d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ For instructions for other systems visit https://www.npmjs.com/package/canvas#co

## Changelog

### 0.4.10
* A few changes for AIRBOT Z1 and Z1 Air Quality Monitor

### 0.4.9
* Using library version 0.9.6 (alpha)

Expand Down
2 changes: 2 additions & 0 deletions nodes/ecovacs-deebot.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ module.exports = function (RED) {
}
});

// aqMonitor = e.g. Z1 Air Quality Monitor
if (node.vacbot.getModelType() !== 'aqMonitor') {
node.vacbot.run('GetBatteryState');
// airbot = e.g. AIRBOT Z1
if (node.vacbot.getModelType() === 'airbot') {
node.vacbot.run('GetCleanState_V2');
} else {
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-ecovacs-deebot",
"version": "0.4.9",
"version": "0.4.10",
"description": "Node-RED node for Ecovacs Deebot vacuum cleaner",
"main": "nodes/ecovacs-deebot.js",
"scripts": {
Expand Down

0 comments on commit 79173d4

Please sign in to comment.