#include <LedControl.h>
int DIN = 11;
int CS = 7;
int CLK = 13;
int position = 0;
LedControl lc=LedControl(DIN, CLK, CS,1);
byte smile[][8]=
{
{0x00, 0xfc, 0xfe, 0x12, 0x12, 0xfe, 0xfc, 0x00}, //A
{0x00, 0xfe, 0xfe, 0x92, 0x92, 0xfe, 0x6c, 0x00}, //B
{0x00, 0x7c, 0xfe, 0x82, 0x82, 0xc6, 0x44, 0x00}, //C
{0x00, 0xfe, 0xfe, 0x82, 0x82, 0xfe, 0x7c, 0x00}, //D
{0x00, 0xfe, 0xfe, 0x92, 0x92, 0x92, 0x82, 0x00}, //E
{0x00, 0xfe, 0xfe, 0x12, 0x12, 0x12, 0x02, 0x00}, //F
{0x00, 0x7c, 0xfe, 0x82, 0xa2, 0xe6, 0x64, 0x00}, //G
{0x00, 0xfe, 0xfe, 0x10, 0x10, 0xfe, 0xfe, 0x00}, //H
{0x00, 0x00, 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00}, //I
{0x00, 0x60, 0xe0, 0x82, 0xfe, 0x7e, 0x02, 0x00}, //J
{0x00, 0xfe, 0xfe, 0x38, 0x6c, 0xc6, 0x82, 0x00}, //K
{0x00, 0xfe, 0xfe, 0x80, 0x80, 0x80, 0x80, 0x00}, //L
{0x00, 0xfe, 0xfe, 0x0c, 0x18, 0x0c, 0xfe, 0xfe}, //M
{0x00, 0xfe, 0xfe, 0x0c, 0x18, 0x30, 0xfe, 0xfe}, //N
{0x00, 0x7c, 0xfe, 0x82, 0x82, 0xfe, 0x7c, 0x00}, //O
{0x00, 0xfe, 0xfe, 0x22, 0x22, 0x3e, 0x1c, 0x00}, //P
{0x00, 0x3c, 0x7e, 0x42, 0x62, 0xfe, 0xbc, 0x00}, //Q
{0x00, 0xfe, 0xfe, 0x32, 0x72, 0xde, 0x8c, 0x00}, //R
{0x00, 0x4c, 0xde, 0x92, 0x92, 0xf6, 0x64, 0x00}, //S
{0x00, 0x06, 0x02, 0xfe, 0xfe, 0x02, 0x06, 0x00}, //T
{0x00, 0x7e, 0xfe, 0x80, 0x80, 0xfe, 0xfe, 0x00}, //U
{0x00, 0x3e, 0x7e, 0xc0, 0xc0, 0x7e, 0x3e, 0x00}, //V
{0x00, 0xfe, 0xfe, 0x60, 0x30, 0x60, 0xfe, 0xfe}, //W
{0x00, 0xc6, 0xee, 0x38, 0x10, 0x38, 0xee, 0xc6}, //X
{0x00, 0x0e, 0x1e, 0xf0, 0xf0, 0x1e, 0x0e, 0x00}, //Y
{0x00, 0xc2, 0xe2, 0xb2, 0x9a, 0x8e, 0x86, 0x00}, //Z
};
int bts = 26;
void setup()
{
lc.shutdown(0, false);
lc.setIntensity(0, 10);
lc.clearDisplay(0);
}
void loop() {
int k = 0;
for (k=0;k<=bts-1;k++){
printByte(smile[k]);
delay(1000);
}
}
void printByte(byte character [])
{
int i = 0;
for(i=0;i<8;i++)
{
lc.setRow(0,i,character[i]);
}
}