Mirror of arendst/Tasmota@github.com - Open-source firmware for ESP8266/8285/32-based smart home products
Go to file
Adrian Scillato 5d28dc3f6f
Update platformio.ini
2018-05-15 13:33:54 -03:00
.github Update from Tasmota 2018-05-13 12:38:41 -03:00
api v5.1.4 2017-06-01 17:37:30 +02:00
arduino Add esp8266/Arduino 2.4.1 support 2018-03-10 13:05:31 +01:00
lib Add Hardware Serial Fallback to TasmotaSerial 2018-05-10 14:36:32 -03:00
pio Add platformio floats removal 2018-02-03 16:36:25 +01:00
sonoff Update user_config.h 2018-05-15 11:30:40 -03:00
.gitattributes Add linefeed normalisation 2017-03-07 09:36:01 +01:00
.gitignore Merge remote-tracking branch 'upstream/development' into development 2018-03-01 08:44:12 +01:00
.travis.yml v5.1.4 2017-06-01 17:37:30 +02:00
COPYFILES.BAT update 2018-05-11 13:55:15 -03:00
LICENSE.txt v5.1.0 2017-05-13 13:02:10 +02:00
README.md Update from Tasmota 2018-05-14 21:36:54 -03:00
esp8266.flash.1m0.ld Add 1M flash with no spiffs linker script 2017-04-25 18:16:40 +02:00
platformio.ini Update platformio.ini 2018-05-15 13:33:54 -03:00

README.md

Sonoff-Tasmota KNX (Development Repository)

Now integrated in Sonoff-Tasmota!

Sonoff-Tasmota_KNX is a modification for Sonoff-Tasmota to add a basic functionality of the KNX IP Protocol.

GitHub version GitHub download License

If you like Sonoff Tasmota KNX, give it a star, or fork it and contribute! GitHub stars GitHub forks

Any help or comment is very welcome.

Table of Contents

KNX Explanation

The KNX IP Protocol is an international open standard for smart homes and smart buildings automation. It is a decentralized system. Each device can talk directly to each other without the need of a central controller or server. Any panel or server is just for telesupervision and for sending requests. KNX IP Protocol uses a UDP multicast on 224.0.23.12 : 3671, so there is no need for a KNX Router unless you want to communicate to KNX Devices that are not in the WIFI Network (Twisted Pair, RF, Powerline).

Each device has a physical address (like a fixed IP) as 1 . 1 . 0 and that address is used for configuration purposes.

Each device can be configured with group addresses as 2 / 2 / 1 and that address can be used for sending/receiving commands. So, for example, if 2 devices that are configured with the 2 / 2 / 1 for turning on/off their outputs, and other device send Turn ON command to 2 / 2 / 1, both devices will turn on their outputs.

Integration

Several home automation systems have KNX support. For example, Home Assistant has a XKNX Python Library to connect to KNX devices using a KNX Router. If you don't have a KNX Router, you can use a Software KNX Router like KNXd on the same Raspberry Pi than Home Assistant. KNXd is used by Home Assistant for reading this UDP Multicast, although KNXd has other cool features that need extra hardware like connect to KNX devices by Twister Pair, Power Line or RF.

If you use the ETS (KNX Configurator Software) you can add any Sonoff Tasmota KNX as a dummy device.

Requirement

It is recommended to compile with version 2.3.0 of the esp8266 board libraries. With v2.4.0 and v2.4.1 there are some issues related to sleep command.

Usage Examples

There are multiple possible configurations. Here are explained just a few as example. The options for selecting relays, buttons, sensors, etc. are only available if were configured on Configure Module Menu.

To configure KNX, enter on the Configuration Menu of Sonoff-Tasmota and select Configure KNX.

1) Setting Several Sonoff to be controlled as one by a Home Automation System:

We can set one of the group address to be the same in all the devices so as to turn them on or off at the same time. In this case, so as to inform the status of all the relays to the Automation System, just one of the devices have to be configured as the responder. If you use the same Group Address for sending and receiving, you have to take into account not to make loops.

DEVICE 1

DEVICE 2

2) Setting 2 Sonoff to be linked as stair lights:

We can set one device to send the status of its output and another to read that and follow. And the second device can send the status of its button and the first device will toggle. With this configuration we can avoid to make a loop.

DEVICE 1

DEVICE 2

3) Setting a button as initiator of a scene:

Just setting one device to send the push of a button, and the rest just use that value to turn them on. In this case, there is no toggle. Every time the button is pushed, the turn on command is sent.

DEVICE 1

DEVICE 2

4) Setting a Temperature sensor:

We can configure to send the value of temperature or humidity every teleperiod. This teleperiod can be configured. See Sonoff Tasmota wiki. It is recommended also to set the reply temperature address.

Development Road Map

For Sonoff-Tasmota_KNX:

  • Add Web Menu
  • Add Feature to Receive telegrams and modify Relay Status
  • Add Feature to Receive telegrams from multiple Group Addresses to modify just one relay status (useful for scenes)
  • Add Feature to Send telegrams of relay status change
  • Add Feature to Send telegrams of one relay status to multiple Group Addresses (useful for scenes)
  • Add Feature to Send telegrams of button pressed
  • Add Feature to receive telegrams to toggle relay status
  • Add Feature to read Temperature, Humidity from Tasmota
  • Add Feature to send Temperature, Humidity by a set interval (tasmota teleperiod)
  • Add Feature to receive command to read temperature, Humidity
  • Add Feature to recognize Tasmota config to show the same number of relays, buttons, etc.
  • Add Feature to Save Config
  • Add Feature to Load Config
  • Add Log Info
  • Complete all the language files with keys
  • Add support for other output devices supported by Tasmota
  • Add options for increase communication reliability (re send telegrams, check for ack)
  • Add options for multicast forced reconnection (needed for some routers that have IGMP conflict with actual esp8266 lib v2.3.0 to v2.4.1, and lwIP v1.4 to v2.0 - Send a telegram to itself. If it is received, multicast is ok)
  • Add option to support KNX Snooping to debug KNX Network
  • Add option to repeat all KNX multicast broadcast (Tasmota to Tasmota communications) to KNX-IP Tunneling
  • Add option to support ETS Programming
  • Optimize code to reduce Flash and RAM

Modifications to Sonoff-Tasmota

  • Adding the file /sonoff/xdrv_11_KNX.ino
  • Add the entry #define USE_KNX on /sonoff/user_config.h
  • Add entries to the file /sonoff/webserver.ino
  • Add entries to the file /sonoff/sonoff.ino
  • Add entries to the file /sonoff/sonoff.h
  • Add entries to the file /sonoff/settings.h
  • Add entries to the file /sonoff/support.ino
  • Add entries to sensor files
  • Add entries to language files

Up to now, enabling KNX uses +23k of code and +3k3 of memory.

There is NO CONFLICT with MQTT, Home Assistant, Web, etc. Tests show fast response of all features running at same time.

Contributors

  • ascillato ( Adrian Scillato )
  • sisamiwe - Thanks for the guide on using KNX.
  • envy ( Nico Weichbrodt ) - Thanks for the patience and help with the modifications to ESP_KNX_IP.
  • arendst ( Theo Arends ) - Thanks for the guide on Tasmota and for the ideas.
  • johannesbonn - Thanks for the patience on bug resolutions
  • RocketSience - Thanks for the patience on bug resolutions
  • jeylites - Thanks for the patience on bug resolutions


Sonoff-Tasmota

Alternative firmware for ESP8266 based devices like iTead Sonoff with web, timers, 'Over The Air' (OTA) firmware updates and sensors support, allowing control under Serial, HTTP, MQTT and KNX, so as to be used on Smart Home Systems. Written for Arduino IDE and PlatformIO.

GitHub version GitHub download License

If you like Sonoff-Tasmota, give it a star, or fork it and contribute! GitHub stars GitHub forks

Development

Build Status

Current version is 5.13.1c - See sonoff/_releasenotes.ino for change information.

Quick install

Download one of the released binaries from https://github.com/arendst/Sonoff-Tasmota/releases and flash it to your hardware as documented in the wiki.

Important User Compilation Information

If you want to compile Sonoff-Tasmota yourself keep in mind the following:

  • Only Flash Mode DOUT is supported. Do not use Flash Mode DIO / QIO / QOUT as it might seem to brick your device. See Wiki for background information.
  • Sonoff-Tasmota uses a 1M linker script WITHOUT spiffs for optimal code space. If you compile using ESP/Arduino library 2.3.0 then download the provided new linker script to your Arduino IDE or Platformio base folder. Later version of ESP/Arduino library already contain the correct linker script. See Wiki > Prerequisite.
  • To make compile time changes to Sonoff-Tasmota it can use the user_config_override.h file. It assures keeping your settings when you download and compile a new version. To use user_config.override.h you will have to make a copy of the provided user_config.override_sample.h file and add your setting overrides. To enable the override file you will need to use a compile define as documented in the user_config_override_sample.h file.

Version Information

  • Sonoff-Tasmota provides all (Sonoff) modules in one file and starts with module Sonoff Basic.
  • Once uploaded select module using the configuration webpage or the commands Modules and Module.
  • After reboot select config menu again or use commands GPIOs and GPIO to change GPIO with desired sensor.

See Wiki for more information.
See Community for forum and more user experience.

The following devices are supported:

Firmware release information

Different firmware images are released based on Features and Sensors selection guided by code and memory usage.

  • The Minimal version allows intermediate OTA uploads to support larger versions and does NOT change any persistent parameter.
  • The Classic version allows single OTA uploads as did the previous Sonoff-Tasmota versions.

Available Features and Sensors

Feature or Sensor sonoff classic minimal knx allsensors
MY_LANGUAGE en-GB x x x x x
MQTT_LIBRARY_TYPE PUBSUBCLIENT x x x x x
USE_DOMOTICZ x x - x x
USE_HOME_ASSISTANT x x - x x
USE_MQTT_TLS - - - - -
USE_KNX - - - x -
USE_WEBSERVER x x x x x
USE_EMULATION x x - - x
USE_DISCOVERY x x - x x
WEBSERVER_ADVERTISE x x - x x
MQTT_HOST_DISCOVERY x x - x x
USE_TIMERS x - - x x
USE_TIMERS_WEB x - - x x
USE_SUNRISE x - - x x
USE_RULES x - - x x
USE_ADC_VCC x x x x x
USE_DS18B20 x x - x -
USE_DS18x20 - - - - x
USE_DS18x20_LEGACY - - - - -
USE_I2C x x - x x
USE_SHT x x - x x
USE_SHT3X x x - x x
USE_HTU x x - x x
USE_BMP x x - x x
USE_BME680 - - - - x
USE_SGP30 x - - x x
USE_BH1750 x x - x x
USE_VEML6070 - - - - x
USE_TSL2561 - - - - x
USE_ADS1115 - - - - x
USE_ADS1115_I2CDEV - - - - -
USE_INA219 - - - - x
USE_MGS - - - - x
USE_SPI - - - - -
USE_MHZ19 x x - x x
USE_SENSEAIR x x - x x
USE_PMS5003 x x - x x
USE_NOVA_SDS x - - x x
USE_PZEM004T x x - x x
USE_SERIAL_BRIDGE x - - x x
USE_IR_REMOTE x x - x x
USE_IR_HVAC - - - - x
USE_IR_RECEIVE x - - x x
USE_WS2812 x x - x x
USE_WS2812_DMA - - - - -
USE_ARILUX_RF x x - x x
USE_SR04 x - - x x

Typical file size

ESP/Arduino library version sonoff classic minimal knx allsensors
ESP/Arduino lib v2.3.0 526k 488k 427k 535k 549k
ESP/Arduino lib v2.4.0 531k 496k 435k 540k 552k
ESP/Arduino lib v2.4.1 534k 499k 437k 543k 555k

Contribute

You can contribute to Sonoff-Tasmota by

  • providing Pull Requests (Features, Proof of Concepts, Language files or Fixes)
  • testing new released features and report issues
  • donating to acquire hardware for testing and implementing or out of gratitude

donate

Credits

Libraries used

Libraries used with Sonoff-Tasmota are:

People inspiring me

People helping to keep the show on the road:

  • David Lang providing initial issue resolution and code optimizations
  • Heiko Krupp for his IRSend, HTU21, SI70xx and Wemo/Hue emulation drivers
  • Wiktor Schmidt for Travis CI implementation
  • Thom Dietrich for PlatformIO optimizations
  • Marinus van den Broek for his EspEasy groundwork
  • Pete Ba for more user friendly energy monitor calibration
  • Lobradov providing compile optimization tips
  • Flexiti for his initial timer implementation
  • reloxx13 for his SonWeb management tool
  • Joachim Banzhaf for his TSL2561 library and driver
  • Gijs Noorlander for his MHZ19 and SenseAir drivers
  • Emontnemery for his HomeAssistant Discovery concept and many code tuning tips
  • Aidan Mountford for his HSB support
  • Daniel Ztolnai for his Serial Bridge implementation
  • Gerhard Mutz for his SGP30 and Sunrise/Sunset driver
  • Nuno Ferreira for his HC-SR04 driver
  • Adrian Scillato for his (security)fixes and implementing and maintaining KNX
  • Gennaro Tortone for his Eastron SDM120 driver
  • Raymond Mouthaan for managing Wemos Wiki information
  • Norbert Richter, Frogmore42 and Jason2866 for providing many issue answers
  • Many more providing Tips, Pocs or PRs

License

This program is licensed under GPL-3.0