-
Download OpenWrt firmware image here.
-
Flash your router using this guide.
-
SSH into your router:
ssh [email protected]
. -
Add a new interface in
/etc/config/network
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OpenHAB Heating Example | |
======================== | |
This heating example shows three rooms in my house with 1 radiator valve, 1 temperature sensor per room and a single boiler. It could be adapted for different situations. | |
The rules allow for simple addition of items in rooms as long as they follow the naming convention and have at least a valve, a thermometer, setpoint and a demand switch. | |
The demand switch is purely internal and is used to indicate if the room requires heat or not. All rooms are OR'd together to define the boiler status and each room demand (On/Off) is applied to the radiator valves. | |
It could be more generic for multiple thermometers/valves per room - but it suits my needs for now. If I make it more generic I will update it accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Shelly i3 Actions | |
description: Bind Shelly i3 button press actions | |
domain: automation | |
input: | |
switch: | |
name: Shelly i3 Switch | |
selector: | |
entity: | |
integration: shelly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: notify.alexa_media | |
data: | |
message: test | |
data: | |
method: all | |
type: announce | |
title: my announce | |
target: | |
- media_player.downstairs_echo | |
- media_player.kitchen_echo |