document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. int digit[10]={B10000000,B11110010,B01001000,B01100000,B00110010,B00100100,B00000100,B11110000,B00000000,B00100000};
  2. void setup() {
  3.   DDRD = B11111110;
  4. }
  5. void loop() {
  6.    for(int i=0;i<10;i++)
  7.    {
  8.    PORTD = digit[i];
  9.    delay(1000);
  10.    }
  11. }
');