Skip to content

Commit

Permalink
Update for Light
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarmer08 committed Oct 6, 2023
1 parent fc19913 commit 539a525
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ After you have done that if you feel like my work has been valuable to you I wel

## Releases

### v0.5.37-alpha.3
- Fix issue with Light

### v0.5.37-alpha.2
- Add check box for HMS Subscription
- Removed MFA Support
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-wyze-smart-home",
"version": "0.5.37-alpha.2",
"version": "0.5.37-alpha.3",
"description": "Wyze Smart Home plugin for Homebridge",
"license": "MIT",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/accessories/WyzeLight.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = class WyzeLight extends WyzeAccessory {
} else {
this.getCharacteristic(Characteristic.On).updateValue(this.homeKitAccessory.context.device_params.switch_state)

const propertyList = await this.this.plugin.client.getDevicePID(this.mac, this.product_model)
const propertyList = await this.plugin.client.getDevicePID(this.mac, this.product_model)
for (const property of propertyList.data.property_list) {
switch (property.pid) {
case WYZE_API_BRIGHTNESS_PROPERTY:
Expand Down

0 comments on commit 539a525

Please sign in to comment.