Skip to content

Commit

Permalink
new models
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Jul 13, 2024
1 parent ea414af commit 5632796
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). In pr
- `MINOR` version when a new device type is added, or when a new feature is added that is backwards-compatible
- `PATCH` version when backwards-compatible bug fixes are implemented

## 10.5.0 (2024-07-13)

### Added

- Support (beta) `MS100F` temperature sensor
- Support (beta) thermostat `MTS960`

### Changed

- Add MSH300HK to IgnoreHKNative in constants.js (#572) (@LWatso99)

## 10.4.1 (2024-07-13)

### Changed
Expand Down
4 changes: 4 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1306,6 +1306,10 @@
{
"title": "MTS200B",
"enum": ["MTS200B"]
},
{
"title": "MTS960",
"enum": ["MTS960"]
}
],
"condition": {
Expand Down
1 change: 1 addition & 0 deletions lib/platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,7 @@ export default class {
subAcc.control = new deviceTypes.deviceHubSmoke(this, subAcc);
break;
case 'MS100':
case 'MS100F':
subAcc.control = new deviceTypes.deviceHubSensor(this, subAcc);
break;
case 'MS400':
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ export default {
garage: ['MSG100', 'MSG200'],
roller: ['MRS100'],
baby: ['HP110A', 'HP110AHK'],
thermostat: ['MTS200', 'MTS200B'],
thermostat: ['MTS200', 'MTS200B', 'MTS960'],
hubMain: ['MSH300', 'MSH300HK'],
hubSub: ['GS559A', 'MS100', 'MS400', 'MTS100V3', 'MTS150'],
hubSub: ['GS559A', 'MS100', 'MS100F', 'MS400', 'MTS100V3', 'MTS150'],
},

hkNativeHardware: {
Expand Down

0 comments on commit 5632796

Please sign in to comment.