Skip to content

Commit

Permalink
🎨 Reformated Python, JSON and MD files
Browse files Browse the repository at this point in the history
  • Loading branch information
litinoveweedle authored and actions-user committed Aug 2, 2024
1 parent 462fa2e commit 72a6925
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docs/CLIMATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Find your device's brand code [here](CLIMATE_CODES.md) and add the number in the
| `name` | string | optional | The name of the device |
| `unique_id` | string | optional | An ID that uniquely identifies this device. If two devices have the same unique ID, Home Assistant will raise an exception. |
| `device_code` | number | required | (Accepts only positive numbers) |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `delay` | number | optional | Adjusts the delay in seconds between multiple commands. The default is 0.5 |
| `temperature_sensor` | string | optional | _entity_id_ for a temperature sensor |
| `humidity_sensor` | string | optional | _entity_id_ for a humidity sensor |
Expand Down Expand Up @@ -52,7 +52,7 @@ climate:
name: Office AC
unique_id: office_ac
device_code: 2000
controller_data:
controller_data:
controller_type: Xiaomi
remote_entity: remote.xiaomi_miio_192_168_10_10
temperature_sensor: sensor.temperature
Expand Down Expand Up @@ -102,7 +102,7 @@ climate:
name: Office AC
unique_id: office_ac
device_code: 4000
controller_data:
controller_data:
controller_type: LOOKin
remote_host: 192.168.10.10
temperature_sensor: sensor.temperature
Expand Down
6 changes: 3 additions & 3 deletions docs/FAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Find your device's brand code [here](FAN_CODES.md) and add the number in the `de
| `name` | string | optional | The name of the device |
| `unique_id` | string | optional | An ID that uniquely identifies this device. If two devices have the same unique ID, Home Assistant will raise an exception. |
| `device_code` | number | required | (Accepts only positive numbers) |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `delay` | number | optional | Adjusts the delay in seconds between multiple commands. The default is 0.5 |
| `power_sensor` | string | 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) |
| `power_sensor_delay` | int | optional | Maximum delay in second in which power sensor is able to report back to HA changed state of the device, default is 10 seconds. If sensor reaction time is longer extend this time, otherwise you might get unwanted changes in the device state. |
Expand Down Expand Up @@ -48,7 +48,7 @@ fan:
name: Bedroom fan
unique_id: bedroom_fan
device_code: 2000
controller_data:
controller_data:
controller_type: Xiaomi
remote_entity: remote.xiaomi_miio_192_168_10_10
power_sensor: binary_sensor.fan_power
Expand Down Expand Up @@ -90,7 +90,7 @@ fan:
name: Bedroom fan
unique_id: bedroom_fan
device_code: 4000
controller_data:
controller_data:
controller_type: LOOKin
remote_host: 192.168.10.10
power_sensor: binary_sensor.fan_power
Expand Down
8 changes: 4 additions & 4 deletions docs/MEDIA_PLAYER.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Find your device's brand code [here](MEDIA_PLAYER_CODES.md) and add the number i
| `name` | string | optional | The name of the device |
| `unique_id` | string | optional | An ID that uniquely identifies this device. If two devices have the same unique ID, Home Assistant will raise an exception. |
| `device_code` | number | required | (Accepts only positive numbers) |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `controller_data` | string | required | The data required for the controller to function. Look into configuration examples bellow for valid configuration entries for different controllers types. |
| `delay` | number | optional | Adjusts the delay in seconds between multiple commands. The default is 0.5 |
| `power_sensor` | string | 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) |
| `power_sensor_delay` | int | optional | Maximum delay in second in which power sensor is able to report back to HA changed state of the device, default is 10 seconds. If sensor reaction time is longer extend this time, otherwise you might get unwanted changes in the device state. |
Expand Down Expand Up @@ -49,7 +49,7 @@ media_player:
name: Living room TV
unique_id: living_room_tv
device_code: 2000
controller_data:
controller_data:
controller_type: Xiaomi
remote_entity: remote.xiaomi_miio_192_168_10_10
power_sensor: binary_sensor.tv_power
Expand Down Expand Up @@ -91,7 +91,7 @@ media_player:
name: Living room TV
unique_id: living_room_tv
device_code: 4000
controller_data:
controller_data:
controller_type: LOOKin
remote_host: 192.168.10.10
power_sensor: binary_sensor.tv_power
Expand Down Expand Up @@ -164,7 +164,7 @@ media_player:
name: Living room TV
unique_id: living_room_tv
device_code: 1000
controller_data:
controller_data:
controller_type: LOOKin
remote_host: 192.168.10.10
source_names:
Expand Down

0 comments on commit 72a6925

Please sign in to comment.