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

Support quite mode for Air Conditioners #273

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@

[![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)

# Smartthings Homebridge Plugin
# Smartthings Homebridge Plugin

This is a smartthings plugin for Homebridge. This requires no access to the legacy smartthings app, and doesn't
require a lot of work to install. It will discover devices automatically as well as unregister devices that are removed
from your smarttthings network. This is currently under development.

## New in version 1.5.22
* Support for Quiet mode for air conditioners
## Fixed in version 1.5.20
* Fixed discovery of devices issue where some fans were set up as lights
## Fixed in version 1.5.19
Expand Down
4 changes: 2 additions & 2 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"required": false,
"default": ""
},

"GarageDoorMaxPoll": {
"title": "Garage Door Max Poll",
"type": "integer",
Expand Down Expand Up @@ -80,7 +79,8 @@
"Sleep",
"Speed",
"WindFree",
"WindFreeSleep"
"WindFreeSleep",
"Quiet"
],
"default": "None"
},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": false,
"displayName": "SmartThings Plugin",
"name": "homebridge-smartthings-ik",
"version": "1.5.21",
"version": "1.5.22",
"description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
"license": "Apache-2.0",
"repository": {
Expand Down Expand Up @@ -51,4 +51,4 @@
"url": "https://venmo.com/?txn=pay&audience=public&recipients=ira-klein-3"
}
]
}
}
3 changes: 2 additions & 1 deletion src/services/airConditionerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ enum OptionalMode {
Sleep = 'sleep',
Speed = 'speed',
WindFree = 'windFree',
WindFreeSleep = 'windFreeSleep'
WindFreeSleep = 'windFreeSleep',
Quiet = 'quiet'
}

export class AirConditionerService extends BaseService {
Expand Down
Loading