Réna,
Then based on your comments, can one assume that this is the part of the code that does the Tiny TV ON-OFF without the power switch?
-john
if (IRresult == powerCode || checkNewButtonPress(TSButtonLowerLeft)) {
if (!isOff) {
if (!isStopped()) {
requestPause();
delay(10);
display.endTransfer();
}
display.off();
isOff = true;
} else {
display.on();
if (!isStopped()) {
display.goTo(0, 0);
display.startData();
requestUnPause();
}
isOff = false;
}
}