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
#define __product__ "Senso: RF24 Receiver, IR Sender" | |
#define __model__ "RF24IR" | |
#define __version__ "1508DEV" | |
#define __author__ "Leroy Foerster <[email protected]>" | |
#define __contributors__ "Marvyn Zalewski <[email protected]>" | |
#define __copyright__ "(c) 2015 The Senso Team" | |
#define __license__ "All rights reserved." | |
#define MY_DEBUG | |
#define MY_RADIO_NRF24 |
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
/** | |
* The MySensors Arduino library handles the wireless radio link and protocol | |
* between your home built sensors/actuators and HA controller of choice. | |
* The sensors forms a self healing radio network with optional repeaters. Each | |
* repeater and gateway builds a routing tables in EEPROM which keeps track of the | |
* network topology allowing messages to be routed to nodes. | |
* | |
* Created by Henrik Ekblad <[email protected]> | |
* Copyright (C) 2013-2015 Sensnology AB | |
* Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors |
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
Number Weather_Temperature "Temperatur [%.2f °C]" <temperature> (groupDashboardWeather) {weather="locationId=home, type=temperature, property=current"} | |
Number Weather_Temperature_Feel "gefühlte Temperatur [%.2f °C]" <temperature_cold> (groupDashboardWeather) {weather="locationId=home, type=temperature, property=feel"} | |
DateTime Sunrise_Time "Sonnen Aufgang [%1$tH:%1$tM]" <sunrise> (groupDashboardWeather) {channel="astro:sun:hamburg:rise#start" } | |
DateTime Sunset_Time "Sonnen Untergang [%1$tH:%1$tM]" <sunset> (groupDashboardWeather) {channel="astro:sun:hamburg:set#start" } | |
Number Weather_Humidity "Luftfeuchtigkeit [%d %%]" <humidity> (groupDashboardWeather) {weather="locationId=home, type=atmosphere, property=humidity"} | |
Number Weather_Pressure "Luftdruck [%.2f mb]" <fan> (groupD |