Skip to content

Commit

Permalink
Airthings Wave Enhance
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelahern committed Oct 5, 2024
1 parent 6f1d249 commit 09d951b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ A [Homebridge](https://homebridge.io) plugin for
| [Airthings View Plus](https://www.airthings.com/view-plus) | 2960xxxxxx |
| [Airthings View Pollution](https://www.airthings.com/view-pollution) | 2980xxxxxx |
| [Airthings View Radon](https://www.airthings.com/view-radon) | 2989xxxxxx |
| [Airthings Wave Enhance](https://www.airthings.com/wave-enhance) | 3210xxxxxx |
| [Airthings Wave Enhance](https://www.airthings.com/wave-enhance) | 3220xxxxxx |
| [Airthings Wave Plus](https://www.airthings.com/wave-plus) | 2930xxxxxx |
| [Airthings Wave Radon](https://www.airthings.com/wave-radon) | 2950xxxxxx |
| [Airthings Wave Mini](https://www.airthings.com/wave-mini) | 2920xxxxxx |
Expand Down
5 changes: 3 additions & 2 deletions src/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ export function getAirthingsDeviceInfoBySerialNumber(serialNumber: string) {
voc: false
}
} as AirthingsDeviceInfo;
case '3210':
case '3220':
return {
model: "Wave Enhance",
model: 'Wave Enhance',
sensors: {
co2: true,
humidity: true,
Expand All @@ -120,7 +121,7 @@ export function getAirthingsDeviceInfoBySerialNumber(serialNumber: string) {
voc: true
}
} as AirthingsDeviceInfo;
default:
default:
return {
model: 'Unknown',
sensors: {
Expand Down

0 comments on commit 09d951b

Please sign in to comment.