15 lines
181 B
C++
15 lines
181 B
C++
#include <trace.h>
|
|
|
|
void setup(void)
|
|
{
|
|
Serial.begin(115200);
|
|
TRACE(TRACE_INFO, F("Setup..."));
|
|
}
|
|
|
|
void loop(void)
|
|
{
|
|
|
|
TRACE(TRACE_INFO, F("loop..."));
|
|
delay(1000);
|
|
}
|