and make it const so the compiler can optimize it to nothing
const byte maxReadingCount = 15;
Constant should be declared const for safety too, so they can't be accidentally modified.
and make it const so the compiler can optimize it to nothing
const byte maxReadingCount = 15;
Constant should be declared const for safety too, so they can't be accidentally modified.