Anttiduino wrote:volatile uint8_t intSrc = 0; // The interrupt source is read into this
Added the "volatile" qualifier in the sketch. However, that did not make any difference.
if (intSrc && 16 == 16) {
"&&" is "logical AND" -operator and is evaluated only after "==" -operator ??