knx/examples/knx-sonoffS20/knx-sonoffS20.ino
2019-06-04 00:09:40 +02:00

61 lines
1.3 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().boolValue())
return;
bool value = goSwitch.value();
digitalWrite(RELAYPIN, value);
goStatus.value(value);
}
void setup()
{
SerialDBG.begin(115200);
#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.
}