204 lines
6.1 KiB
Markdown
204 lines
6.1 KiB
Markdown
<p align="center">
|
|
<a href="#"><img src="assets/infrarize_fan.png" width="350" alt="Infrarize Media Player"></a>
|
|
</p>
|
|
|
|
For this platform to work, we need a .json file containing all the necessary IR or RF commands.
|
|
Find your device's brand code [here](FAN.md#available-codes-for-fan-devices) and add the number in the `device_code` field. The compoenent will download it to the correct folder. If your device is not working, you will need to learn your own codes and place the .json file in `infrarize/codes/fan/` subfolders. Please note that the `device_code` field only accepts positive numbers. The .json extension is not required.
|
|
|
|
## Configuration variables
|
|
|
|
**name** (Optional): The name of the device<br />
|
|
**unique_id** (Optional): An ID that uniquely identifies this device. If two devices have the same unique ID, Home Assistant will raise an exception.<br />
|
|
**device_code** (Required): ...... (Accepts only positive numbers)<br />
|
|
**controller_data** (Required): The data required for the controller to function. Enter the entity_id of the Broadlink remote (must be an already configured device), or the entity id of the Xiaomi IR controller, or the MQTT topic on which to send commands.<br />
|
|
**delay** (Optional): Adjusts the delay in seconds between multiple commands. The default is 0.5 <br />
|
|
**power_sensor** (Optional): *entity_id* for a sensor that monitors whether your device is actually On or Off. This may be a power monitor sensor. (Accepts only on/off states)<br />
|
|
|
|
## Example (using broadlink controller)
|
|
|
|
Add a Broadlink RM device named "Bedroom" via config flow (read the [docs](https://www.home-assistant.io/integrations/broadlink/)).
|
|
|
|
```yaml
|
|
infrarize:
|
|
|
|
fan:
|
|
- platform: infrarize
|
|
name: Bedroom fan
|
|
unique_id: bedroom_fan
|
|
device_code: 1000
|
|
controller_data: remote.bedroom_remote
|
|
power_sensor: binary_sensor.fan_power
|
|
```
|
|
|
|
## Example (using xiaomi controller)
|
|
|
|
```yaml
|
|
infrarize:
|
|
|
|
remote:
|
|
- platform: xiaomi_miio
|
|
host: 192.168.10.10
|
|
token: YOUR_TOKEN
|
|
|
|
fan:
|
|
- platform: infrarize
|
|
name: Bedroom fan
|
|
unique_id: bedroom_fan
|
|
device_code: 2000
|
|
controller_data: remote.xiaomi_miio_192_168_10_10
|
|
power_sensor: binary_sensor.fan_power
|
|
```
|
|
|
|
## Example (using mqtt controller)
|
|
|
|
```yaml
|
|
infrarize:
|
|
|
|
fan:
|
|
- platform: infrarize
|
|
name: Bedroom fan
|
|
unique_id: bedroom_fan
|
|
device_code: 3000
|
|
controller_data: home-assistant/bedroom-fan/command
|
|
power_sensor: binary_sensor.fan_power
|
|
```
|
|
|
|
## Example (using LOOKin controller)
|
|
|
|
```yaml
|
|
infrarize:
|
|
|
|
fan:
|
|
- platform: infrarize
|
|
name: Bedroom fan
|
|
unique_id: bedroom_fan
|
|
device_code: 4000
|
|
controller_data: 192.168.10.10
|
|
power_sensor: binary_sensor.fan_power
|
|
```
|
|
|
|
## Example (using ESPHome)
|
|
|
|
ESPHome configuration example:
|
|
|
|
```yaml
|
|
esphome:
|
|
name: my_espir
|
|
platform: ESP8266
|
|
board: esp01_1m
|
|
|
|
api:
|
|
services:
|
|
- service: send_raw_command
|
|
variables:
|
|
command: int[]
|
|
then:
|
|
- remote_transmitter.transmit_raw:
|
|
code: !lambda 'return command;'
|
|
|
|
remote_transmitter:
|
|
pin: GPIO14
|
|
carrier_duty_percent: 50%
|
|
```
|
|
|
|
HA configuration.yaml:
|
|
|
|
```yaml
|
|
infrarize:
|
|
|
|
fan:
|
|
- platform: infrarize
|
|
name: Bedroom fan
|
|
unique_id: bedroom_fan
|
|
device_code: 4000
|
|
controller_data: my_espir_send_raw_command
|
|
power_sensor: binary_sensor.fan_power
|
|
```
|
|
|
|
## Available codes for Fan devices
|
|
|
|
The following are the code files created by the amazing people in the community. Before you start creating your own code file, try if one of them works for your device. **Please open an issue if your device is working and not included in the supported models.**
|
|
Contributing to your own code files is welcome. However, we do not accept incomplete files as well as files related to MQTT controllers.
|
|
|
|
#### Kaze
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1000](../codes/fan/1000.json)|Unknown|Broadlink
|
|
|
|
#### Acorn
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1020](../codes/fan/1020.json)|Unknown|Broadlink
|
|
|
|
#### Atomberg
|
|
|
|
| Code | Supported Models | Notes |Controller |
|
|
| ------------- | ----- | ----- | ------------- |
|
|
[1160](../codes/fan/1160.json)|Efficio||Broadlink
|
|
[1170](../codes/fan/1170.json)|Renesa|Speeds `1,2,3,4,5` is mapped to `2,3,4,5,Boost` on the remote|Broadlink
|
|
|
|
#### Lucci Air
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1040](../codes/fan/1040.json)|Aria|Broadlink
|
|
[1041](../codes/fan/1041.json)|Whitehaven DC|Broadlink
|
|
[7040](../codes/fan/7040.json)|Aria|ESPHome
|
|
|
|
#### Super Fan
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1060](../codes/fan/1060.json)|A1|Broadlink
|
|
|
|
#### Harbor Breeze
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1080](../codes/fan/1080.json)|A25-TX001-R1|Broadlink
|
|
[1081](../codes/fan/1081.json)|A25-TX025|Broadlink
|
|
|
|
#### Pacific
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1100](../codes/fan/1100.json)|Unknown|Broadlink
|
|
|
|
#### Europace
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1120](../codes/fan/1120.json)|Unknown|Broadlink
|
|
|
|
#### SMC
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1140](../codes/fan/1140.json)|SP486, SP483|Broadlink
|
|
|
|
#### Argo
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1180](../codes/fan/1180.json)|Standy|Broadlink
|
|
|
|
#### DCG
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1200](../codes/fan/1200.json)|Unknown|Broadlink
|
|
|
|
#### Mitsubishi
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1220](../codes/fan/1220.json)|C56-RW5|Broadlink
|
|
|
|
#### Mallory
|
|
|
|
| Code | Supported Models | Controller |
|
|
| ------------- | -------------------------- | ------------- |
|
|
[1240](../codes/fan/1240.json)|Air Timer TS+|Broadlink
|