knx/examples/knx-sonoffS20/knx-sonoffS20.ino
Bernator afd07d10cb Bugfix, change debug uart not possible (#33)
* bugfix, print not allowed in constructor

* Update tpuart_data_link_layer.cpp

- start confirm timout only after last byte was sent
- increase BYTE_TIMEOUT

* -bugfix, change debug Uart not possible

* Update esp32_platform.cpp

* Update esp_platform.cpp

* Update knx-bme680.ino

* Update knx-demo.ino

* Update knx-hdc1008.ino

* Update knx-sonoffS20.ino
2019-09-09 20:10:56 +02:00

62 lines
1.4 KiB
C++

#include <knx.h>
#ifdef ARDUINO_ARCH_ESP8266
#include <WiFiManager.h>
#endif
#define RELAYPIN 12
// create named references for easy access to group objects
#define goSwitch knx.getGroupObject(1)
#define goBlock knx.getGroupObject(2)
#define goStatus knx.getGroupObject(3)
// callback from switch-GO
void switchCallback(GroupObject& go)
{
if (goBlock.value())
return;
bool value = goSwitch.value();
digitalWrite(RELAYPIN, value);
goStatus.value(value);
}
void setup()
{
Serial.begin(115200);
ArduinoPlatform::SerialDebug = &Serial;
#ifdef ARDUINO_ARCH_ESP8266
WiFiManager wifiManager;
wifiManager.autoConnect("knx-sonoffS20");
#endif
// read adress table, association table, groupobject table and parameters from eeprom
knx.readMemory();
if (knx.configured())
{
// register callback for reset GO
goSwitch.callback(switchCallback);
goSwitch.dataPointType(Dpt(1, 0));
goBlock.dataPointType(Dpt(1, 0));
goStatus.dataPointType(Dpt(1, 0));
}
// start the framework. Will get wifi first.
knx.start();
}
void loop()
{
// don't delay here to much. Otherwise you might lose packages or mess up the timing with ETS
knx.loop();
// only run the application code if the device was configured with ETS
if(!knx.configured())
return;
// nothing else to do.
}