Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <LedControl.h>
- // Program name: Paul Flint: Savage (dot matrix)
- // Author: The Phoenix Team
- // Date Written: 28.11.2018
- // Description: This is a SYNC music not included.
- int DIN = 12; // DIN from dot matrix in 12
- int CS = 11; // CS from dot matrix in pin 11
- int CLK = 10; // CLK from dot matrix in pin 10
- LedControl lc=LedControl(DIN,CLK,CS,0);
- void setup(){
- lc.shutdown(0,false);
- lc.setIntensity(0,15);
- lc.clearDisplay(0);
- }
- void loop(){
- byte apone[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
- byte aptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7E, 0x7E};
- byte apthree[8] = {0x00, 0x00, 0x18, 0x18, 0x7E, 0x7E, 0xC3, 0xC3};
- byte apfour[8] = {0x18, 0x18, 0x7E, 0x7E, 0xC3, 0xC3, 0x00, 0x00};
- byte apfive[8] = {0x7E, 0x7E, 0xC3, 0xC3, 0x00, 0x00, 0x00, 0x00};
- byte apsix[8] = {0xC3, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte bpone[8] = {0x00, 0x00, 0x00, 0x80, 0x80, 0x00, 0x00, 0x00};
- byte bptwo[8] = {0x00, 0x00, 0x00, 0x20, 0x20, 0x00 0x00 0x00};
- byte bpthree[8] = {0x00, 0x00, 0x00, 0x4h, 0x00, 0x00, 0x00, 0x00};
- byte cpone[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18};
- byte cptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00};
- byte cpthree[8] = {0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte dpone[8] = {0x1h, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte dptwo[8] = {0x00, 0x00, 0x00, 0x1h, 0x00, 0x00, 0x00, 0x00};
- byte dpthree[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1h, 0x00};
- byte epone[8] = {0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00};
- byte eptwo[8] = {0x00, 0x00, 0x3c, 0x22, 0x22, 0x18 0x00, 0x00};
- byte epthree[8] = {0x00, 0x7e, 0x42, 0x42, 0x44, 0x24, 0x18, 0x00};
- byte epfour[8] = {0xFF, 0x81, 0x81, 0x81, 0x82, 0x42, 0x24, 0x18};
- byte fpone[8] = {0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x00};
- byte fptwo[8] = {0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00};
- byte fpthree[8] = {0x00, 0x00, 0x00, oxch, oxch, 0x00, 0x00, 0x00};
- byte fpfour[8] = {0x00, 0x00, 0x00, 0x3h, 0x3h, 0x00, 0x00, 0x00};
- byte gpone[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
- byte gptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x18 0x00, 0x00};
- byte gpthree[8] = {0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00};
- byte gpfour[8] = {0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte hpone[8] = {0x18, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18};
- byte hptwo[8] = {0x00, 0x00, 0x18, 0x18, 0x18 0x18, 0x00, 0x00};
- byte hpthree[8] = {0x18, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18};
- byte ipone[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00];
- byte iptwo[8] = {0x00, 0x00, 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00};
- byte ipthree[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00};
- byte jpone[8] = {0x00, 0x00, 0x18, 0x3c, 0x3c, 0x18, 0x00, 0x00};
- byte jptwo[8] = {0x00, 0x3c, 0x7e, 0x73, 0x66, 0x66, 0x3c, 0x00};
- byte jthree[8] = {0x3c, 0x7e, 0xe7, 0xc3, 0xc3, 0xe7, 0xe7, 0x3c};
- byte jpfour[8] = {0xff, 0xc3, 0x81, 0x81, 0x81, 0x81, 0xc3, 0xff};
- byte titlepone[8] = {0xff, 0xff, 0xc0, 0xff, 0xff, 0xc0, 0xff, 0xff};
- byte titleptwo[8] = {0x18, 0x3c, 0x3c, 0x42, 0x7e, 0xc3, 0xc3, 0xc3};
- byte titlepthree[8] = {0xc3, 0xc3, 0xc3, 0x66, 0x66, 0x66, 0x3c, 0x18};
- byte titlepfour[8] = {0x18, 0x3c, 0x3c, 0x42, 0x7e, 0xc3, 0xc3, 0xc3};
- byte titlepfive[8] = {0xff, 0xff, 0xc0, 0xdf, 0xdf, 0xc0, 0xff, 0xff};
- byte titlepsix[8] = {0xff, 0xff, 0xc0, 0xff, oxff, 0xc0, 0x00, 0x00};
- byte kpone[8] = {0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00};
- byte kptwo[8] = {0x00, 0x00, 0x18, 0x24, 0x24, 0x18 0x00, 0x00};
- byte kpthree[8] = {0x00, 0x18, 0x00, 0x42, 0x42, 0x00, 0x18, 0x00};
- byte kpfour[8] = {0x18, 0x00, 0x00, 0x42, 0x42 0x00, 0x00, 0x18};
- byte kpfive[8] = {0xff, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0xff};
- byte kpsix[8] = {0xff, 0xe7, 0xe7, 0x81, 0x81, 0xe7, 0xe7, 0xff};
- byte kpseven[8] = {0xff, 0xff, oxff, 0xe7, 0xe7, 0xff, 0xff, 0xff};
- byte lpone[8] = {0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00};
- byte lptwo[8] = {0x00, 0x00, 0x36, 0xff, 0xff, 0x18, 0x00, 0x00};
- byte lpthree[8] = {0x00, 0x00, 0x18, 0xff, 0xff, 0xc3, 0x00, 0x00};
- byte lpfour[8] = {0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00};
- byte mpone[8] = {0xc0, 0xc0, 0xc6, 0xff, 0xff, 0xc0, 0xc0, oxc0};
- byte mptwo[8] = {0xc0, 0xc6, 0xc6, 0xff, 0xff, 0xd0, 0xc0, 0xc0};
- byte mpthree[8] = {0xc0, 0xc0, 0xD8, 0xff, 0xff, 0xc6, 0xc0, 0xc0};
- byte mpfour[8] = {0xc0, 0xc0, 0xc6, 0xff, 0xff, 0xc6, 0xc0, 0xc0};
- byte npone[8] = {0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x18, 0x18};
- byte nptwo[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
- byte npthree[8] = {0xc0, 0xc0, 0xc0, 0x24, 0x24, 0xc0, 0xc0, 0xc0};
- byte npfour[8] = {0xc0, 0xc0, 0xc0, 0x42, 0x42, 0xc0, 0xc0, 0xc0};
- byte npfive[8] = {0xc0, 0xc0, 0xc0, 0x81, 0x81, 0xc0, 0xc0, 0xc0};
- byte opone[8] = {0xff, 0x7f, 0x3f, 0x1f, 0xfh, 0x7h, 0x3h, 0x00};
- byte optwo[8] = {0x00, 0x3h, 0x7h, 0xfh, 0x1f, 0x3f, 0x7f, 0xff};
- byte ppone[8] = {0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00};
- byte pptwo[8] = {0x00, 0x00, 0x00, 0x7e, 0x7e, 0x00, 0x00, 0x00};
- byte ppthree[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00};
- byte ppfour[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
- byte qpone[8] = {0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x00};
- byte qptwo[8] = {0x00, 0x30, 0x30, 0xc0, 0xc0, 0x00, 0x00, 0x00};
- byte qpthree[8] = {0x00, 0x30, 0x30, 0xch, 0xch, 0x00, 0x00, 0x00};
- byte qpfour[8] = {0x00, 0x00, 0x3h, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte rpone[8] = {0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81};
- byte rptwo[8] = {0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3};
- byte rpthree[8] = {0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7};
- byte rpfour[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
- byte rpfive[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
- byte spone[8] = {0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte sptwo[8] = {0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte spthree[8] = {0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte spfour[8] = {0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00};
- byte spfive[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00};
- byte spsix[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00};
- byte spseven[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00};
- byte speight[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18};
- byte tpone[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte tptwo[8] = {0xe0, 0xe0, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00};
- byte tpthree[8] = {0xf0, 0xf0, 0xf0, x0f0, 0x00, 0x00, 0x00, 0x00};
- byte tpfour[8] = {0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0x00, 0x00, 0x00};
- byte tpfive[8] = {0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0x00, 0x00};
- byte tpsix[8] = {0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x00};
- byte tpseven[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
- byte upone[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
- byte uptwo[8] = {0x00, 0x6h, 0x6h, 0x00, 0x00, 0x60, 0x60, 0x00};
- byte upthree[8] = {0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
- byte upfour[8] = {0x00, 0x60, 0x60, 0x00, 0x00, 0x6h, 0x6h, 0x00};
- byte upfive[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
- byte vpone[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x3h, 0x3h};
- byte vptwo[8] = {0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xfh, 0xfh};
- byte vpthree[8] = {0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c};
- byte vpfour[8] = {0xfh, oxfh, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0};
- byte wpone[8] = {0xfh, oxfh, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0};
- byte wptwo[8] = {0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c};
- byte wpthree[8] = {0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xfh, 0xfh};
- byte wpfour[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x3h, 0x3h};
- byte xpone[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
- byte xptwo[8] = {0xc0, 0xc0, 0x3c, 0x3c, 0x3c, 0x3c, 0xc0, 0xc0};
- byte xpthree[8] = {0xc0, 0x66, 0x66, 0x3c, 0x3c, 0x66, 0x66, 0xc0};
- byte xpfour[8 = {0xc3, 0x37, 0x7e, 0x3c 0x3c, 0x7e, 0x37, 0xc3};
- byte ypone[8] = {0xc3, 0x37, 0x7e, 0x3c 0x3c, 0x7e, 0x37, 0xc3};
- byte yptwo[8] = {0xc0, 0x66, 0x66, 0x3c, 0x3c, 0x66, 0x66, 0xc0};
- byte ypthree[8] = {0xc0, 0xc0, 0x3c, 0x3c, 0x3c, 0x3c, 0xc0, 0xc0};
- byte ypfour[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
- byte blank[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
- printByte(apone);
- delay(5);
- printByte(aptwo);
- delay(5);
- printByte(apthree);
- delay(5);
- printByte(apfour);
- delay(5);
- printByte(apfive);
- delay(5);
- printByte(apsix);
- delay(5);
- printbyte(bpone);
- delay(10);
- printByte(bptwo);
- delay(10);
- printByte(bpthree);
- delay(10);
- printByte(cpone);
- delay(7);
- printByte(cptwo);
- delay(7);
- printByte(cpthree);
- delay(7);
- printByte(epone);
- delay(7);
- printByte(eptwo);
- delay(7);
- printByte(epthree);
- delay(7);
- printByte(fpone);
- delay(6);
- printByte(fptwo);
- delay(6);
- printByte(fpthree);
- delay(6);
- printByte(hptwo);
- delay(19);
- printByte(hpthree);
- delay(19);
- printByte(gptwo);
- delay(17);
- printByte(gpthree);
- delay(17);
- printByte(fpone);
- delay(9);
- printByte(fptwo);
- delay(9);
- printByte(fpthree);
- delay(9);
- printByte(fpfour);
- delay(9);
- printByte(opone);
- delay(18);
- printByte(optwo);
- delay(18);
- printByte(fpone);
- delay(9);
- printByte(fptwo);
- delay(9);
- printByte(fpthree);
- delay(9);
- printByte(fpfour);
- delay(9);
- printByte(apone);
- delay(4);
- printByte(aptwo);
- delay(4);
- printByte(apthree);
- delay(4);
- printByte(apfour);
- delay(4);
- printByte(apfive);
- delay(4);
- printByte(apsix);
- delay(4);
- printByte(apsix);
- delay(4);
- printByte(apfive);
- delay(4);
- printByte(apfour);
- delay(4);
- printByte(apthree);
- delay(4);
- printByte(aptwo);
- delay(4);
- printByte(apone);
- delay(4);
- printByte(epone);
- delay(8);
- printByte(eptwo);
- delay(8);
- printByte(epthree);
- delay(8);
- printByte(fpone);
- delay(3);
- printByte(fptwo);
- delay(3);
- printByte(fpthree);
- delay(3);
- printByte(fpfour);
- delay(3);
- printByte(opone);
- delay(16);
- printByte(optwo);
- delay(16);
- printByte(lpone);
- delay(11);
- printByte(lptwo);
- delay(11);
- printByte(lpthree);
- delay(11);
- printByte(lpfour);
- delay(11);
- printByte(ypone);
- delay(29);
- printByte(yptwo);
- delay(29)
- printByte(rpone);
- delay(37);
- printByte(rptwo);
- delay(37);
- printByte(apone);
- delay(12);
- printByte(aptwo);
- delay(12);
- printByte(apthree);
- delay(12);
- printByte(apfour);
- delay(12);
- printByte(apfive);
- delay(12);
- printByte(apsix);
- delay(12);
- printByte(fptwo);
- delay(27);
- printByte(fpthree);
- delay(27);
- printByte(fpfour);
- delay(27);
- printByte(fpfour);
- delay(11);
- printByte(fpthree);
- delay(11);
- printByte(fptwo);
- delay(11);
- printByte(fpone);
- delay(11);
- printByte(ipone);
- delay(27);
- printByte(iptwo);
- delay(27);
- printByte(ipthree);
- delay(27);
- printByte(kpone);
- delay(20)
- printByte(kptwo);
- delay(20)
- printByte(kpthree);
- delay(20)
- printByte(kpfour);
- delay(20);
- printByte(kpone);
- delay(40)
- printByte(kptwo);
- delay(40)
- printByte(kpthree);
- delay(40)
- printByte(kpfour);
- delay(40);
- \
- printByte(kpone);
- delay(40)
- printByte(kptwo);
- delay(40)
- printByte(kpthree);
- delay(40)
- printByte(kpfour);
- delay(40);
- printByte(kpone);
- delay(40)
- printByte(kptwo);
- delay(40)
- printByte(kpthree);
- delay(40)
- printByte(kpfour);
- delay(40);
- printByte(kpone);
- delay(17)
- printByte(kptwo);
- delay(17)
- printByte(kpthree);
- delay(17)
- printByte(kpfour);
- delay(17);
- printByte(kpone);
- delay(28)
- printByte(kptwo);
- delay(28)
- printByte(kpthree);
- delay(28)
- printByte(kpfour);
- delay(28);
- printByte(kpone);
- delay(40)
- printByte(kptwo);
- delay(40)
- printByte(kpthree);
- delay(40)
- printByte(kpfour);
- delay(40);
- printByte(kpone);
- delay(40)
- printByte(kptwo);
- delay(40)
- printByte(kpthree);
- delay(40)
- printByte(kpfour);
- delay(40);
- printByte(titlepone);
- delay(10);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(10);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(10);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(10);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(1);
- printByte(blank);
- delay(1);
- printByte(titlepone);
- delay(2);
- printByte(titleptwo);
- delay(3);
- printByte(titlepthree);
- delay(1);
- printByte(titlepfour);
- delay(2);
- printByte(titlepfive);
- delay(3);
- printByte(titlepsix);
- delay(2);
- printByte(mpone);
- delay(200);
- printByte(mptwo);
- delay(200);
- printByte(qpone);
- delay(23);
- printByte(qptwo);
- delay(23);
- printByte(qpthree);
- delay(23);
- printByte(qpfour);
- delay(23);
- printByte(npone);
- delay(15);
- printByte(nptwo);
- delay(15);
- printByte(npthree);
- delay(15);
- printByte(npfour);
- delay(15);
- printByte(opone)
- delay(25);
- printByte(optwo)
- delay(25);
- printByte(xpone);
- delay(30);
- printByte(xptwo);
- delay(30);
- printByte(xpthree);
- delay(30);
- printByte(xpfour);
- delay(30);
- printByte(lpone);
- delay(18);
- printByte(lpfour);
- delay(18);
- printByte(xpone);
- delay(36);
- printByte(xptwo);
- delay(36);
- printByte(xpthree);
- delay(36);
- printByte(xpfour);
- delay(36);
- printByte(ypone);
- delay(36);
- printByte(yptwo);
- delay(36);
- printByte(ypthree);
- delay(36);
- printByte(ypfour);
- delay(36);
- printByte(vpone);
- delay(3);
- printByte(vptwo);
- delay(3);
- printByte(vpthree);
- delay(3);
- printByte(vpfour);
- delay(3);
- printByte(npone);
- delay(15);
- printByte(nptwo);
- delay(15);
- printByte(npthree);
- delay(15);
- printByte(npfour);
- delay(15);
- printByte(mpone);
- delay(200);
- printByte(mptwo);
- delay(200);
- printByte(qpone);
- delay(23);
- printByte(qptwo);
- delay(23);
- printByte(qpthree);
- delay(23);
- printByte(qpfour);
- delay(23);
- printByte(npone);
- delay(15);
- printByte(nptwo);
- delay(15);
- printByte(npthree);
- delay(15);
- printByte(npfour);
- delay(15);
- printByte(opone)
- delay(25);
- printByte(optwo)
- delay(25);
- printByte(xpone);
- delay(30);
- printByte(xptwo);
- delay(30);
- printByte(xpthree);
- delay(30);
- printByte(xpfour);
- delay(30);
- printByte(lpone);
- delay(18);
- printByte(lpfour);
- delay(18);
- printByte(xpone);
- delay(36);
- printByte(xptwo);
- delay(36);
- printByte(xpthree);
- delay(36);
- printByte(xpfour);
- delay(36);
- printByte(ypone);
- delay(36);
- printByte(yptwo);
- delay(36);
- printByte(ypthree);
- delay(36);
- printByte(ypfour);
- delay(36);
- printByte(vpone);
- delay(3);
- printByte(vptwo);
- delay(3);
- printByte(vpthree);
- delay(3);
- printByte(vpfour);
- delay(3);
- printByte(npone);
- delay(15);
- printByte(nptwo);
- delay(15);
- printByte(npthree);
- delay(15);
- printByte(npfour);
- delay(15);
- printByte(xpone);
- delay(36);
- printByte(xptwo);
- delay(36);
- printByte(xpthree);
- delay(36);
- printByte(xpfour);
- delay(36);
- printByte(ypone);
- delay(36);
- printByte(yptwo);
- delay(36);
- printByte(ypthree);
- delay(36);
- printByte(ypfour);
- delay(36);
- printByte(xpone);
- delay(36);
- printByte(vpone);
- delay(3);
- printByte(npone);
- delay(15);
- printByte(vpone);
- delay(3);
- printByte(titlepone);
- delay(54);
- printByte(titleptwo);
- delay(3);
- printByte(titlepthree);
- delay(1);
- printByte(titlepfour);
- delay(2);
- printByte(titlepfive);
- delay(3);
- printByte(titlepsix);
- delay(2);
- l.clearDisplay(0);
- delay (1000)
- }
- void printByte (byte character [])
- {
- int i = 0;
- for(i=0;i<8;i++)
- {
- lc.cetRow(0,1,character[i]);
- }
- }
Add Comment
Please, Sign In to add comment