vojtamolda / homebridge-ecobee3-sensors

Homebridge plugin that exposes Ecobee 3 sensors as HomeKit accessories.
https://www.npmjs.com/package/homebridge-ecobee3-sensors
MIT License
26 stars 15 forks source link

Expose only Humidity sensors to HomeKit #23

Closed apexad closed 6 years ago

apexad commented 6 years ago

So, I would really like my house humidity to show up as a sensor, can you help me with the configuration I would need in config.json for this? Otherwise, I don’t want to add anything else.

vojtamolda commented 6 years ago

Hello @apexad,

Currently there's no way to display only the humidity value, but you can get pretty close. Only the thermostat itself with it's temperature, humidity and controls can be made visible. If you don't assign the sensors that you don't want to see to any room you'll only encounter them in the "Default Room" in the Home app and nowhere else.

This is the critical section from the config.json:

...
"exclude_sensors": true,
"exclude_humidity_sensors": false,
"exclude_occupancy_sensors": true,
"exclude_temperature_sensors": true,
"exclude_thermostat": false,
...