Kotiautomaatio setit
Awesome HA
https://github.com/frenck/awesome-home-assistant
Public Configurations
https://github.com/frenck/awesome-home-assistant#public-configurations
HACS:
"Unofficial add-on manager"
https://hacs.xyz/
http://homeassistant.local:8123/hacs/entry
Install RTFM:
https://hacs.xyz/docs/setup/prerequisites
https://hacs.xyz/docs/setup/download
Addons:
Nordpool
http://homeassistant.local:8123/hacs/integrations
Click bottom-right "Explore"
Search for Nordpool
http://homeassistant.local:8123/hacs/repository/201805130
Apexcharts-card
http://homeassistant.local:8123/hacs/frontend
http://homeassistant.local:8123/hacs/integrations
Click bottom-right "Explore"
Search for Apexcharts-card
http://homeassistant.local:8123/hacs/repository/331701152
blitzortung
http://homeassistant.local:8123/hacs/integrations
Click bottom-right "Explore"
Search for Blitzortung
http://homeassistant.local:8123/hacs/repository/272094506
Automaatiot
blitzortung pushit puhelimiin, HA ei tarvitse olla julkiverkossa tai VPN. Menee Applen/Android natiivi tavalla.
HASSIO
"Official add-on-manager"
http://homeassistant.local:8123/hassio/dashboard
Studio Code Server - VS Code Server in-browser, no need for sFTP or dirty tricks.
- Start on boot
- Auto update
- Show in sidebar
Dashboard
Nordpool päivähinta chartit HA-foorumeilta
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | type: custom:apexcharts-card
now:
show: true
label: NU
graph_span: 48h
apex_config:
annotations:
position: back
yaxis:
- 'y': 0.1987
strokeDashArray: 0
borderColor: green
borderWidth: 0
chart:
height: 300px
legend:
showForSingleSeries: true
plotOptions:
bar:
borderRadius: 2
yaxis:
decimalsInFloat: 2
tickAmount: 10
forceNiceScale: true
xaxis:
labels:
datetimeFormatter:
hour: HH
all_series_config:
show:
offset_in_name: false
header:
title: ' '
show: true
show_states: true
colorize_states: true
span:
start: day
offset: +0h
series:
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
type: column
color: green
float_precision: 4
stroke_width: 2
name: Päivän tuntihinta
show:
in_header: false
legend_value: false
extremas: true
data_generator: |
return entity.attributes.raw_today.map((start, index) => {
return [new Date(start["start"]).getTime(), entity.attributes.raw_today[index]["value"]];
});
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
type: column
color: yellow
float_precision: 4
stroke_width: 2
name: Huomisen tuntihinta
show:
in_header: false
legend_value: false
extremas: true
data_generator: |
return entity.attributes.raw_tomorrow.map((start, index) => {
return [new Date(start["start"]).getTime(), entity.attributes.raw_tomorrow[index]["value"]];
});
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
name: Tuntihinta nyt
color: green
type: column
show:
in_chart: false
float_precision: 4
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
attribute: average
type: column
color: pink
float_precision: 4
stroke_width: 2
name: Päivän keskihinta
group_by:
duration: 2d
show:
in_chart: false
legend_value: false
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
attribute: max
type: column
color: orange
float_precision: 4
stroke_width: 2
name: Päivän maksimit
group_by:
duration: 2d
show:
in_chart: false
legend_value: false
- entity: sensor.nordpool_kwh_fi_eur_3_095_024
attribute: min
type: column
color: green
float_precision: 4
stroke_width: 2
name: Päivän minimit
group_by:
duration: 2d
show:
in_chart: false
legend_value: false
|