#include "led1.h"
#define DELAY 1000000
void setup() {
// put your setup code here, to run once:
init();
}
void loop() {
// put your main code here, to run repeatedly:
volatile char output;
volatile long i,j;
volatile int a[5]={0x07,0xe0,0x0c,0x18};
for(j=0;j<5;j++)
{
output = a[j];
out(output);
for(i=0;i<DELAY;i++);
}
}