Skip to content

Commit

Permalink
update hacs metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuen Lee committed Aug 25, 2023
1 parent 8a77631 commit 493e3c4
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.vscode/
__pycache__
34 changes: 28 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,55 @@ Changing Green Share %
```
service: alfen_wallbox.set_green_share
data:
entity_id: sensor.wallbox
value: 95
entity_id: number.wallbox_solar_green_share
value: 80
```

Changing Comfort Charging Power in Watt
```
service: alfen_wallbox.set_comfort_power
data:
entity_id: sensor.wallbox
value: 1450
entity_id: number.wallbox_solar_comfort_level
value: 1400
```

Enable phase switching
```
service: alfen_wallbox.enable_phase_switching
data:
entity_id: sensor.wallbox
entity_id: switch.wallbox_enable_phase_switching
```


Disable phase switching
```
service: alfen_wallbox.disable_phase_switching
data:
entity_id: sensor.wallbox
entity_id: switch.wallbox_enable_phase_switching
```

Enable RFID Authorization Mode
```
service: alfen_wallbox.enable_rfid_authorization_mode
data:
entity_id: select.wallbox_authorization_mode
```

Disable RFID Authorization Mode
```
service: alfen_wallbox.disable_rfid_authorization_mode
data:
entity_id: select.wallbox_authorization_mode
```

Reboot wallbox
```
service: alfen_wallbox.reboot_wallbox
data:
entity_id: alfen_wallbox.garage
```


> After reverse engineering the API myself I found out that there is already a python libary wrapping the Alfen API.
> https://gitlab.com/LordGaav/alfen-eve/-/tree/develop/alfeneve
Expand Down
5 changes: 4 additions & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"name": "Alfen Wallbox"
"name": "Alfen Wallbox",
"domains": ["binary_sensor", "button", "number", "select", "sensor", "switch", "text"],
"homeassistant": "2023.1.0",
"iot_class": "cloud_polling",
}

0 comments on commit 493e3c4

Please sign in to comment.