diff --git a/examples/ioLogging/ioLogging.ino b/examples/ioLogging/ioLogging.ino index 47bfe44..cc73809 100644 --- a/examples/ioLogging/ioLogging.ino +++ b/examples/ioLogging/ioLogging.ino @@ -8,6 +8,9 @@ * * This logging is only complied in when the above define is set, if it is not set then * the logging is completely removed. + * + * Full documentation is here: + * https://tcmenu.github.io/documentation/arduino-libraries//io-abstraction/arduino-logging-with-io-logging/ */ /* The logging levels are below: diff --git a/examples/textUtilities/textUtilities.ino b/examples/textUtilities/textUtilities.ino index c383267..2b21224 100644 --- a/examples/textUtilities/textUtilities.ino +++ b/examples/textUtilities/textUtilities.ino @@ -8,6 +8,9 @@ * This logging is only complied in when the above define is set, if it is not set then * the logging is completely removed. * + * Documentation link: + * https://tcmenu.github.io/documentation/arduino-libraries/io-abstraction/text-utilities-and-helpers/ + * https://tcmenu.github.io/documentation/arduino-libraries//io-abstraction/arduino-logging-with-io-logging/ */ #include @@ -17,7 +20,7 @@ char sz[32] = {0}; void setup() { // This example logs using IoLogging, see the following guide to enable - // https://www.thecoderscorner.com/products/arduino-libraries/io-abstraction/arduino-logging-with-io-logging/ + // https://tcmenu.github.io/documentation/arduino-libraries//io-abstraction/arduino-logging-with-io-logging/ IOLOG_START_SERIAL // convert 102934 to 8 decimal places not padded. diff --git a/src/TcMenuLog.h b/src/TcMenuLog.h new file mode 100644 index 0000000..c94dc38 --- /dev/null +++ b/src/TcMenuLog.h @@ -0,0 +1,7 @@ +#ifndef TC_MENU_LOG_H +#define TC_MENU_LOG_H + +// simply include the IoLogging file, this allows the header to match the library name +#include "IoLogging.h" + +#endif //TC_MENU_LOG_H