mirror of
https://github.com/thelsing/knx.git
synced 2026-02-23 13:50:35 +01:00
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
This commit is contained in:
@@ -43,7 +43,7 @@ bool trigger = false;
|
||||
void setup(void)
|
||||
{
|
||||
Serial.begin(115200);
|
||||
ArduinoPlatform::SerialDebug = Serial;
|
||||
ArduinoPlatform::SerialDebug = &Serial;
|
||||
delay(5000);
|
||||
Serial.println("start");
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ void resetCallback(GroupObject& go)
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
ArduinoPlatform::SerialDebug = Serial;
|
||||
ArduinoPlatform::SerialDebug = &Serial;
|
||||
|
||||
randomSeed(millis());
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ uint32_t cyclSend = 0;
|
||||
void setup(void)
|
||||
{
|
||||
Serial.begin(115200);
|
||||
ArduinoPlatform::SerialDebug = Serial;
|
||||
ArduinoPlatform::SerialDebug = &Serial;
|
||||
delay(5000);
|
||||
Serial.println("start");
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void switchCallback(GroupObject& go)
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
ArduinoPlatform::SerialDebug = Serial;
|
||||
ArduinoPlatform::SerialDebug = &Serial;
|
||||
|
||||
#ifdef ARDUINO_ARCH_ESP8266
|
||||
WiFiManager wifiManager;
|
||||
|
||||
Reference in New Issue
Block a user