added music card documentation

This commit is contained in:
Martijn
2024-11-30 18:26:46 +01:00
parent a715bc2784
commit 5352ea4511
2 changed files with 80 additions and 1 deletions
+44
View File
@@ -0,0 +1,44 @@
# ESPHome Button+ - Music card
## Usage
* Add the music card file to youre files and supply the `entity_id`
```
substitutions:
music_card_enity_id: 'media_player.media_keuken_2'
package:
remote_package_files:
url: https://github.com/dixi83/ESPHome_ButtonPlus
files: [<other files>,'package/cards/music.yaml']
```
* Add the music card to the main display `lambda` and give it the position you want
```
id(music_card).execute(20, 125);
```
* Add the icons buttons to the BAR's
Select one of the folowing types:
* `volume_up`
* `volume_down`
* `next`
* `prev`
* `playpause`
* `power`
```
id(music_card_bar).execute('volume_up')
```
* add actions to the buttons
Select the a matching action for the button:
* `music_card_vol_up`
* `music_card_vol_down`
* `music_card_next`
* `music_card_prev`
* `music_card_playpause`
* `music_card_power`
```
id(music_card_vol_up).execute()
```