Arduino Smart Logging

The problem Often when programming in Arduino you need some logging to the serial port. Most often this is done with a lot of “Serial.println” statements. To make some nice output the logging code easily becomes quite big. Here is an example that illustrates the problem: #define NUMBER_OF_APPLES 100 uint8_t applesPerPerson = findApplesPerPerson( peopleAmount ); […]

Read More