/*
  This project is used only for dictative purposes and
  was inspired by the video tutorial
  How a Character LCD works of the 8-Bit Guy Channel
  https://www.youtube.com/watch?v=hZRL8luuPb8

  1. Start the simulation
  2. Start the display
     dip-switch: 11110000 and press pushbutton enable
  3. CTRL + pushbutton RS
  4. Send commands & data
     See README.md or Description

  Note: ATtiny85 was used as a power supply only.
*/

int main(void)
{
  while (1)
    ; // It doesn't do anything, just not to give a compilation error. ;)
  return 0;
}
ATTINY8520PU