Delete knx-hdc1008.ino

This commit is contained in:
thelsing 2019-06-11 20:30:34 +02:00 committed by GitHub
parent 57db264603
commit 6b928cb5d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +0,0 @@
#include <GDBStub.h>
//Comment out the definition below if you don't want to use the ESP8266 gdb stub.
#define ESP8266_USE_GDB_STUB
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
#ifdef ESP8266_USE_GDB_STUB
#if !defined(GDBSTUB_BREAK_ON_INIT) || !GDBSTUB_BREAK_ON_INIT
printf("WARNING! The ESP8266 GDB stub will not wait for gdb during startup. Please add GDBSTUB_BREAK_ON_INIT=1 to Extra Preprocessor Macros.\n");
#endif
gdbstub_init();
#endif
}
void loop()
{
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}