#Thank you so much it's exactly what I
1 messages · Page 1 of 1 (latest)
Let's start with the easier version instead of the more complicated version. You can click Add Card and find grid and add four button cards. Alternatively, you can click Add Card, scroll to the very bottom, and select Manual. You can then paste this yaml to get you started. ```yaml
type: grid
columns: 4
square: true
cards:
- type: button
entity: null
show_name: true
show_icon: true
icon: mdi:sofa
name: Living Room
tap_action: none - type: button
entity: null
show_name: true
show_icon: true
icon: mdi:desk
name: Office
tap_action: none - type: button
entity: null
show_name: true
show_icon: true
icon: mdi:bed
name: Bedroom
tap_action: none - type: button
entity: null
show_name: true
show_icon: true
icon: mdi:wall-sconce
name: Hallway
tap_action: none```
Because you plan on using these buttons to automate your vacuum cleaner, I did not set an entity for each button. Instead, we can use them to specific the room name and an icon. Later, we'll add whatever method you are planning to initiate the vacuum cleaner to go to a specific room (automation).
thanks a lot, it was really useful
@raven junco may I ask in which HA file is this code ?