knx stack (TP, IP and RF) for arduino and linux, Can be configured with ETS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
thelsing 57b5b05ce1
Merge pull request #272 from OpenKNX/feature/set-value-and-check-change
3 months ago
.github/workflows Update CodeQL (#219) 2 years ago
.vscode 32bit eeprom size (#230) 1 year ago
doc Update conf.py 8 months ago
examples H8I8O Example (#210) 2 years ago
src Merge pull request #272 from OpenKNX/feature/set-value-and-check-change 3 months ago
.clang-format add .clang-format, remove VS class diagramm 5 years ago
.gitattributes opt-out global KNX, ability to DIY construct knx object, minor cleanups (#121) 3 years ago
.gitignore opt-out global KNX, ability to DIY construct knx object, minor cleanups (#121) 3 years ago
.readthedocs.yaml Update .readthedocs.yaml 8 months ago
CMakeLists.txt fix knxPython build 4 years ago
LICENSE Create LICENSE 6 years ago
README.md replace deprecated CreateKnxProd link with Kaenx-Creator 3 months ago
library.properties Update library.properties 4 years ago
platformio.ini add platformio file and fix compiling without IP 4 years ago

README.md

knx

This projects provides a knx-device stack for arduino (ESP8266, ESP32, SAMD21, RP2040, STM32), CC1310 and linux. (more are quite easy to add) It implements most of System-B specification and can be configured with ETS. The necessary knxprod-files can be generated with the Kaenx-Creator tool.

For ESP8266 and ESP32 WifiManager is used to configure wifi.

Don't forget to reset ESP8266 manually (disconnect power) after flashing. The reboot doen't work during configuration with ETS otherwise.

Generated documentation can be found here.

Stack configuration possibilities

Specify prog button GPIO other then GPIO0:

knx.buttonPin(3); // Use GPIO3 Pin

Specify a LED GPIO for programming mode other then the LED_BUILTIN:

knx.ledPin(5);

Use a custom function instead of a LED connected to GPIO to indicate the programming mode:

#include <Arduino.h>
#include <Adafruit_NeoPixel.h>
#include <knx.h>
// create a pixel strand with 1 pixel on PIN_NEOPIXEL
Adafruit_NeoPixel pixels(1, PIN_NEOPIXEL);

void progLedOff()
{
  pixels.clear();
  pixels.show();
}

void progLedOn()
{
  pixels.setPixelColor(0, pixels.Color(20, 0, 0));
  pixels.show();
}

void main ()
{
 knx.setProgLedOffCallback(progLedOff);
 knx.setProgLedOnCallback(progLedOn);
 [...]
}

More configuration options can be found in the examples.