rhockenbury / homebridge-ecowitt-weather-sensors

Complete HomeKit support for Ecowitt Weather Sensors with Homebridge
https://www.npmjs.com/package/homebridge-ecowitt-weather-sensors
Apache License 2.0
1 stars 0 forks source link

[INCREMENTAL] Introduce Support for Pressure, PM1.0, and PM4.0 Custom Characteristics #2

Open rhockenbury opened 3 months ago

rhockenbury commented 3 months ago
    // TODO: Not supported by HomeKit yet.
    // this.absolutePressureSensor = new OccupancySensor(
    //   platform,
    //   accessory,
    //   "Absolute Pressure"
    // );
    // this.relativePressureSensor = new OccupancySensor(
    //   platform,
    //   accessory,
    //   "Relative Pressure"
    // );

Previously implemented as occupancySensors, can potentially wait for better support for pressure characteristics in HomeKit or re-implement using the occupancySensor.

Outdoor and indoor pressure is reported by various Ecowitt devices.

These can be implemented via a Motion, Occupancy or Contact sensor (along with custom characteristics) to implement a threshold for automation.

rhockenbury commented 2 months ago