I have a Raspberry Pi in the rear porch area and a 32" tv mounted on the wall.
I am trying to get a dashboard working to show various information. I’m trying to get the sensor card fonts large enough so that they are readable outside from a distance.
Here is the progress I have made. I am solving for moving the temperature value and unit down into the card. The card currently takes the full width of the tv which is what I want. This is designed with the new Sections dashboards.
graph: line
type: sensor
detail: 1
entity: sensor.ambient_local_temp
name: " "
grid_options:
columns: full
rows: 8
hours_to_show: 24
card_mod:
style: |
ha-card {
text-align: center;
}
ha-card .value {
font-size: 200px;
}
ha-card .measurement {
font-size: 200px;
}
I need to move the text down somehow. I don’t mind if the text is over the temperature line.
Thank you!