Compare commits
2 commits
e880a09ba8
...
07cfe658cc
Author | SHA1 | Date | |
---|---|---|---|
|
07cfe658cc | ||
|
0ee3d15754 |
5 changed files with 64 additions and 8 deletions
|
@ -12,8 +12,7 @@ services:
|
|||
ipv4_address: 172.69.1.2
|
||||
|
||||
openhab:
|
||||
build:
|
||||
dockerfile: openhab/Dockerfile
|
||||
image: "openhab/openhab:4.0.4"
|
||||
restart: always
|
||||
|
||||
environment:
|
||||
|
@ -22,6 +21,7 @@ services:
|
|||
OPENHAB_HTTP_PORT: "8080"
|
||||
OPENHAB_HTTPS_PORT: "8043"
|
||||
USER_ID: ${ID}
|
||||
GROUP_ID: ${GID}
|
||||
network_mode: host
|
||||
|
||||
volumes:
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
FROM openhab/openhab:4.0.4
|
||||
|
||||
ARG ID=1000
|
||||
|
||||
RUN echo $ID
|
||||
RUN chown $ID -R /openhab/conf
|
26
openhab/openhab_conf/items/light_effects.items
Normal file
26
openhab/openhab_conf/items/light_effects.items
Normal file
|
@ -0,0 +1,26 @@
|
|||
Group Room
|
||||
Group SmartClothes
|
||||
|
||||
Group Sensors
|
||||
Group:Number Cam "Last roll" (Sensors)
|
||||
|
||||
Group Actuators
|
||||
Group Lights (Actuators)
|
||||
|
||||
|
||||
Number dmg "dernier degat" (Cam, Sensors){
|
||||
channel="Channel='mqtt:topic:de'"
|
||||
}
|
||||
|
||||
|
||||
Switch animation "lampe animation degat" (Lights){
|
||||
channel="Channel='mqtt:topic:lumiere'"
|
||||
}
|
||||
|
||||
Color couleur "couleur lampe" (Lights){
|
||||
channel="Channel='mqtt:topic:lumiere'"
|
||||
}
|
||||
|
||||
Switch reset "effecteur nouveau tour" (Sensors){
|
||||
channel="Channel='mqtt:topic:de'"
|
||||
}
|
7
openhab/openhab_conf/sitemaps/battlefield.sitemap
Normal file
7
openhab/openhab_conf/sitemaps/battlefield.sitemap
Normal file
|
@ -0,0 +1,7 @@
|
|||
sitemap battlefield label="My home automation" {
|
||||
Frame label="Battlefield" {
|
||||
Text item=dmg label="Last Dmg [%s]"
|
||||
Group item=Actuators icon="light"
|
||||
Switch item=reset
|
||||
}
|
||||
}
|
29
openhab/openhab_conf/things/battlefield.things
Normal file
29
openhab/openhab_conf/things/battlefield.things
Normal file
|
@ -0,0 +1,29 @@
|
|||
Bridge mqtt:broker:mainBroker [ host="172.69.1.2", secure=false ]
|
||||
|
||||
|
||||
Thing mqtt:topic:lumiere "lumiere" (mqtt:broker:mainBroker) {
|
||||
Channels:
|
||||
Type switch : light "indicateur degat" [
|
||||
stateTopic="lumiere/degat/etat",
|
||||
commandTopic="lumiere/degat/commande",
|
||||
on="ON", off="OFF"
|
||||
]
|
||||
Type color : light "effect color" [
|
||||
stateTopic="lumiere/degat/color/etat",
|
||||
commandTopic="lumiere/degat/color/commande", colorMode="RGB"
|
||||
]
|
||||
}
|
||||
|
||||
Thing mqtt:topic:de "lecteur de" (mqtt:broker:mainBroker) {
|
||||
Channels:
|
||||
Type number : de "effecteur degat" [
|
||||
stateTopic="de/degat/dernierLance"
|
||||
]
|
||||
}
|
||||
|
||||
Thing mqtt:topic:button "recommencer" (mqtt:broker:mainBroker) {
|
||||
Channels:
|
||||
Type switch : de "effecteur nouveau tour" [
|
||||
stateTopic="de/nouveauTour"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue