Skip to content

Commit

Permalink
Merge pull request #46 from Morac2/Morac2-wave-enhance-support-pr
Browse files Browse the repository at this point in the history
Add support for Wave Enhance
  • Loading branch information
michaelahern authored Oct 5, 2024
2 parents 76fbe4e + 93d7573 commit 6f1d249
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,22 @@ export function getAirthingsDeviceInfoBySerialNumber(serialNumber: string) {
voc: false
}
} as AirthingsDeviceInfo;
default:
case '3220':
return {
model: "Wave Enhance",
sensors: {
co2: true,
humidity: true,
mold: false,
pm1: false,
pm25: false,
pressure: true,
radonShortTermAvg: false,
temp: true,
voc: true
}
} as AirthingsDeviceInfo;
default:
return {
model: 'Unknown',
sensors: {
Expand Down

0 comments on commit 6f1d249

Please sign in to comment.