AceTime  3.0.0
Date and time classes for Arduino that support timezones from the TZ Database.
compat.cpp
1 #include "compat.h"
2 
3 // There are many different boards which identify themselves as
4 // ARDUINO_SAMD_ZERO. The original Arduino Zero using Native USB Port
5 // does not set SERIAL_PORT_MONITOR correctly, so warn the user.
6 #if defined(ARDUINO_SAMD_ZERO)
7  #warning Arduino Zero may need SERIAL_PORT_MONITOR fixed (see USER_GUIDE.md)
8 #endif
Macros and definitions that provide a consistency layer among the various Arduino boards for compatib...