/* Five LEDs Puzzle v5 - see http://www.technoblogy.com/show?3D8S David Johnson-Davies - www.technoblogy.com - 15th March 2021 ATtiny85 @ 1 MHz (internal oscillator; BOD disabled) CC BY 4.0 Licensed under a Creative Commons Attribution 4.0 International license: http://creativecommons.org/licenses/by/4.0/ */ #include // Pin change interrupt is just used to wake us up ISR (PCINT0_vect) { } void setup () { PORTB = 0; DDRB = 0; // Set up pin change interrupts for buttons PCMSK = 1<