Trace/examples/ttest/ttest.ino

15 lines
181 B
Arduino
Raw Permalink Normal View History

2019-01-24 12:42:49 +01:00
#include <trace.h>
void setup(void)
{
Serial.begin(115200);
TRACE(TRACE_INFO, F("Setup..."));
2019-01-24 12:42:49 +01:00
}
void loop(void)
{
TRACE(TRACE_INFO, F("loop..."));
delay(1000);
2019-01-24 12:42:49 +01:00
}