An Homebridge plug-in to integrate the Frigidaire's connected dehumidifier with HomeKit. It monitors and control devices via the Frigidaire unofficial cloud API. Thanks to the Frigidaire Python API https://github.com/bm1549/frigidaire developer, this module uses the logic gain from reviewing those libraries/code.
- This module will poll for the status of the various components based frequency provided in the configuration file. No realtime notification is provided.
Attributes | Description |
---|---|
username | Frigidaire username. This is a required value. |
password | Frigidaire password. This is a required value. |
deviceRefresh | Polling interval to obtain status of Frigidaire appliance, provided in seconds. Default to 90 seconds, this is an optional value. Please note: Small values may cause account lock or frequent API errors. |
dehumidifierMode | Homekit only has two mode dehumidifying modes "Auto" and "Dehumidifying". When "Dehumidifying" is selected in Homekit the selection is map to a specific Frigidaire appliance mode: "Quiet", "Dry" or Continuous". Valid numeric values are the following: The default mode for is 5 which is Frigidaire "Dry" mode. This an optional value. |
enableAirPurifier | Create additional tile for Air purifier/Ionizer functionality. Default to true, this is an optional value. |
sessionKeyRefresh | Refresh interval to obtain new a Frigidaire appliance key. The value is provided in hours and default to 9 hours, this is an optional value. Please note: Session key are valid for 12 hours, the plug-in does check if a valid session key is present before each operation and automatically tries to re-login, but this does generate an error in the log for an invalid session key. This value is for proactive session key refresh to prevent error from appearing in logs due to expiring key. Setting this value to 0 will disable session key refresh. |
excludedDevices | Devices IDs to suppress from HomeKit. The device IDs can be obtain from Homebridge logs at startup of this plug-in. This is an optional value. |
Example configuration is below, with Frigidaire dehumidifier mode set to Quiet mode for dehumidifying and Air purifier/Ionizer set to display in Homekit.
...
"platforms": [
{
"name": "FrigidaireAppliance",
"auth": {
"username": "<username>",
"password": "<password>"
},
"deviceRefresh": 90,
"dehumidifierMode": 9,
"enableAirPurifier": true,
"platform": "FrigidaireAppliance"
}
...]