#include
#include
static int fd = -1;
int main()
{
int i=0;
fd=open("/dev/matrixled",O_RDWR);
if(fd<0)
{
printf("Can't open\n");
return -1;
}
else
{
printf("open OK %x\n", fd);
}
while(1)
{
ioctl(fd, 1, 0x4fb);
ioctl(fd, 1, 0x4f7);
ioctl(fd, 1, 0x4ef);
ioctl(fd, 1, 0x8ef);
ioctl(fd, 1, 0x10ef);
ioctl(fd, 1, 0x20ef);
ioctl(fd, 1, 0x20df);
ioctl(fd, 1, 0x20bf);
ioctl(fd, 1, 0x207f);
ioctl(fd, 1, 0x107f);
ioctl(fd, 1, 0x87f);
ioctl(fd, 1, 0x47f);
}
close(fd);
return 0;
}