90 lines
5.0 KiB
C++
90 lines
5.0 KiB
C++
#include <ArduinoLog.h>
|
|
/*
|
|
_ ___ ___ _ _ ___ _ _ ___ _ ___ ___
|
|
/_\ | _ \ \| | | |_ _| \| |/ _ \| | / _ \ / __|
|
|
/ _ \| / |) | |_| || || .` | (_) | |_| (_) | (_ |
|
|
/_/ \_\_|_\___/ \___/|___|_|\_|\___/|____\___/ \___|
|
|
|
|
Log library basic example
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
|
|
This example sketch shows most of the most used features of the ArduinoLog library
|
|
|
|
*/
|
|
|
|
int intValue1 , intValue2;
|
|
long longValue1, longValue2;
|
|
bool boolValue1, boolValue2;
|
|
const char charNotPrintable = 0x8B;
|
|
const char * charArray = "this is a string";
|
|
const char flashCharArray1[] PROGMEM = "this is a string";
|
|
String stringValue1 = "this is a string";
|
|
float floatValue;
|
|
double doubleValue;
|
|
|
|
void setup() {
|
|
// Set up serial port and wait until connected
|
|
Serial.begin(9600);
|
|
while(!Serial && !Serial.available()){}
|
|
randomSeed(analogRead(0));
|
|
// Pass log level, whether to show log level, and print interface.
|
|
// Available levels are:
|
|
// LOG_LEVEL_SILENT, LOG_LEVEL_FATAL, LOG_LEVEL_ERROR, LOG_LEVEL_WARNING, LOG_LEVEL_INFO, LOG_LEVEL_TRACE, LOG_LEVEL_VERBOSE
|
|
// Note: if you want to fully remove all logging code, uncomment #define DISABLE_LOGGING in Logging.h
|
|
// this will significantly reduce your project size
|
|
|
|
Log.begin(LOG_LEVEL_VERBOSE, &Serial);
|
|
|
|
|
|
//Start logging
|
|
|
|
Log.notice(F(CR "******************************************" CR)); // Info string with Newline
|
|
Log.notice( "*** Logging example " CR); // Info string in flash memory
|
|
Log.notice(F("******************* ")); Log.notice("*********************** " CR); // two info strings without newline will end up on same line
|
|
}
|
|
|
|
void loop() {
|
|
// set up some random variables
|
|
intValue1 = random(100);
|
|
intValue2 = random(10000);
|
|
longValue1 = random(1000000);
|
|
longValue2 = random(100000000);
|
|
boolValue1 = random(2)==0;
|
|
boolValue2 = random(2)==1;
|
|
floatValue = 12.34;
|
|
doubleValue= 1234.56789;
|
|
|
|
|
|
Log.notice ( "Log as Info with integer values : %d, %d" CR , intValue1, intValue2);
|
|
Log.notice (F("Log as Info with hex values : %x, %X" CR ), intValue1, intValue1);
|
|
Log.notice ( "Log as Info with hex values : %x, %X" CR , intValue2, intValue2);
|
|
Log.notice (F("Log as Info with binary values : %b, %B" CR ), intValue1, intValue1);
|
|
Log.notice ( "Log as Info with binary values : %b, %B" CR , intValue2, intValue2);
|
|
Log.notice (F("Log as Info with long values : %l, %l" CR ), longValue1, longValue2);
|
|
Log.notice ( "Log as Info with bool values : %t, %T" CR , boolValue1, boolValue2);
|
|
Log.notice (F("Log as Info with char value : %c" CR ), charArray[0]);
|
|
Log.notice ( "Log as Info with char value : %C" CR , charNotPrintable);
|
|
Log.notice (F("Log as Info with string value : %s" CR ), charArray);
|
|
Log.notice ( "Log as Info with Flash string value : %S" CR , flashCharArray1);
|
|
Log.notice ( "Log as Info with string value : %s" CR , stringValue1.c_str());
|
|
Log.notice (F("Log as Info with float value : %F" CR ), floatValue);
|
|
Log.notice ( "Log as Info with float value : %F" CR , floatValue);
|
|
Log.notice (F("Log as Info with double value : %D" CR ), doubleValue);
|
|
Log.notice ( "Log as Info with double value : %D" CR , doubleValue);
|
|
Log.notice (F("Log as Debug with mixed values : %d, %d, %l, %l, %t, %T" CR ), intValue1 , intValue2 ,
|
|
longValue1, longValue2,
|
|
boolValue1, boolValue2);
|
|
Log.trace ( "Log as Trace with bool value : %T" CR , boolValue1);
|
|
Log.traceln ( "Log as Trace with bool value : %T" , boolValue1);
|
|
Log.warning ( "Log as Warning with bool value : %T" CR , boolValue1);
|
|
Log.warningln( "Log as Warning with bool value : %T" , boolValue1);
|
|
Log.error ( "Log as Error with bool value : %T" CR , boolValue1);
|
|
Log.errorln ( "Log as Error with bool value : %T" , boolValue1);
|
|
Log.fatal ( "Log as Fatal with bool value : %T" CR , boolValue1);
|
|
Log.fatalln ( "Log as Fatal with bool value : %T" , boolValue1);
|
|
Log.verboseln(F("Log as Verbose with bool value : %T" ), boolValue2);
|
|
Log.verbose (F("Log as Verbose with bool value : %T" CR ), boolValue2);
|
|
|
|
|
|
delay(5000);
|
|
} |