New garden scene
This commit is contained in:
parent
ad3146de33
commit
243f6f1155
|
@ -0,0 +1,26 @@
|
||||||
|
FROM ubuntu:18.10
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
perl \
|
||||||
|
libdevice-serialport-perl \
|
||||||
|
libwww-perl \
|
||||||
|
libio-socket-ssl-perl \
|
||||||
|
libcgi-pm-perl
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
RUN wget http://fhem.de/fhem-5.7.deb && \
|
||||||
|
dpkg -i fhem-5.7.deb && \
|
||||||
|
rm fhem-5.7.deb
|
||||||
|
|
||||||
|
|
||||||
|
ADD fhem.cfg /opt/fhem/fhem.cfg
|
||||||
|
|
||||||
|
|
||||||
|
ENV TZ=Europe/Berlin
|
||||||
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
|
||||||
|
WORKDIR /opt/fhem
|
||||||
|
|
||||||
|
CMD /opt/fhem/fhem.pl
|
||||||
|
|
22
scenes.yaml
22
scenes.yaml
|
@ -366,3 +366,25 @@
|
||||||
state: on
|
state: on
|
||||||
brightness: 255
|
brightness: 255
|
||||||
color_temp: 255
|
color_temp: 255
|
||||||
|
|
||||||
|
|
||||||
|
# --------------------- Garten -------------------------------------------------
|
||||||
|
|
||||||
|
- name: Garten Savanna
|
||||||
|
entities:
|
||||||
|
light.garten_stehleuchte:
|
||||||
|
state: on
|
||||||
|
brightness: 205
|
||||||
|
xy_color: [0.465, 0.448]
|
||||||
|
light.garten_spot_beet:
|
||||||
|
state: on
|
||||||
|
brightness: 205
|
||||||
|
xy_color: [0.532, 0.384]
|
||||||
|
light.garten_spot_magnolie:
|
||||||
|
state: on
|
||||||
|
brightness: 205
|
||||||
|
xy_color: [0.465, 0.448]
|
||||||
|
light.garten_spot_birke:
|
||||||
|
state: on
|
||||||
|
brightness: 205
|
||||||
|
xy_color: [0.586, 0.35]
|
||||||
|
|
20
todo
20
todo
|
@ -14,18 +14,28 @@
|
||||||
- add KNX motion sensors + LEDs [ok]
|
- add KNX motion sensors + LEDs [ok]
|
||||||
- add temperature sensors of scene buttons [ok]
|
- add temperature sensors of scene buttons [ok]
|
||||||
- calibrate consumption sensors [ok]
|
- calibrate consumption sensors [ok]
|
||||||
|
- laufzeit poolpumpe pro tag / gestern / durchschnitt pro woche [ok]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- schlafzimmer "all off": aussenlicht(er), eingangsbereich
|
||||||
|
- make scenes for garden
|
||||||
|
- shopping list
|
||||||
|
- make one sensor: last movement + which sensor [ok]
|
||||||
|
- bluetooth device polling
|
||||||
|
- switch: get messages
|
||||||
|
- alarm system
|
||||||
|
- node red:
|
||||||
|
- derive docker image where npm packages are installed / deinstalled
|
||||||
|
- adapt theme
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- laufzeit poolpumpe pro tag / gestern / durchschnitt pro woche
|
|
||||||
- make one sensor: last movement + which sensor
|
|
||||||
- device tracker clean setup
|
- device tracker clean setup
|
||||||
|
|
||||||
- history and logbook filter
|
- history and logbook filter
|
||||||
- fail2ban
|
- fail2ban
|
||||||
|
|
||||||
- node red:
|
|
||||||
- derive docker image where npm packages are installed / deinstalled
|
|
||||||
- adapt theme
|
|
||||||
|
|
||||||
- FHEM
|
- FHEM
|
||||||
- switches: update state when switching
|
- switches: update state when switching
|
||||||
|
|
Loading…
Reference in New Issue