Guest User

Untitled

a guest
Nov 29th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.09 KB | None | 0 0
  1. #include <LedControl.h>
  2.  
  3. // Program name: Paul Flint: Savage (dot matrix)
  4. // Author: The Phoenix Team
  5. // Date Written: 28.11.2018
  6. // Description: This is a SYNC music not included.
  7.  
  8. int DIN = 12; // DIN from dot matrix in 12
  9. int CS = 11; // CS from dot matrix in pin 11
  10. int CLK = 10; // CLK from dot matrix in pin 10
  11.  
  12. LedControl lc=LedControl(DIN,CLK,CS,0);
  13. void setup(){
  14. lc.shutdown(0,false);
  15. lc.setIntensity(0,15);
  16. lc.clearDisplay(0);
  17. }
  18.  
  19. void loop(){
  20. byte apone[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
  21. byte aptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7E, 0x7E};
  22. byte apthree[8] = {0x00, 0x00, 0x18, 0x18, 0x7E, 0x7E, 0xC3, 0xC3};
  23. byte apfour[8] = {0x18, 0x18, 0x7E, 0x7E, 0xC3, 0xC3, 0x00, 0x00};
  24. byte apfive[8] = {0x7E, 0x7E, 0xC3, 0xC3, 0x00, 0x00, 0x00, 0x00};
  25. byte apsix[8] = {0xC3, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  26. byte bpone[8] = {0x00, 0x00, 0x00, 0x80, 0x80, 0x00, 0x00, 0x00};
  27. byte bptwo[8] = {0x00, 0x00, 0x00, 0x20, 0x20, 0x00 0x00 0x00};
  28. byte bpthree[8] = {0x00, 0x00, 0x00, 0x4h, 0x00, 0x00, 0x00, 0x00};
  29. byte cpone[8] =  {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18};
  30. byte cptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00};
  31. byte cpthree[8] = {0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  32. byte dpone[8] = {0x1h, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  33. byte dptwo[8] = {0x00, 0x00, 0x00, 0x1h, 0x00, 0x00, 0x00, 0x00};
  34. byte dpthree[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1h, 0x00};
  35. byte epone[8] = {0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00};
  36. byte eptwo[8] = {0x00, 0x00, 0x3c, 0x22, 0x22, 0x18 0x00, 0x00};
  37. byte epthree[8] = {0x00, 0x7e, 0x42, 0x42, 0x44, 0x24, 0x18, 0x00};
  38. byte epfour[8] = {0xFF, 0x81, 0x81, 0x81, 0x82, 0x42, 0x24, 0x18};
  39. byte fpone[8] = {0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x00};
  40. byte fptwo[8] = {0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00};
  41. byte fpthree[8] = {0x00, 0x00, 0x00, oxch, oxch, 0x00, 0x00, 0x00};
  42. byte fpfour[8] = {0x00, 0x00, 0x00, 0x3h, 0x3h, 0x00, 0x00, 0x00};
  43. byte gpone[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
  44. byte gptwo[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x18 0x00, 0x00};
  45. byte gpthree[8] = {0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00};
  46. byte gpfour[8] = {0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  47. byte hpone[8] = {0x18, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18};
  48. byte hptwo[8] = {0x00, 0x00, 0x18, 0x18, 0x18 0x18, 0x00, 0x00};
  49. byte hpthree[8] = {0x18, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18};
  50. byte ipone[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00];
  51. byte iptwo[8] = {0x00, 0x00, 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00};
  52. byte ipthree[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00};
  53. byte jpone[8] = {0x00, 0x00, 0x18, 0x3c, 0x3c, 0x18, 0x00, 0x00};
  54. byte jptwo[8] = {0x00, 0x3c, 0x7e, 0x73, 0x66, 0x66, 0x3c, 0x00};
  55. byte jthree[8] = {0x3c, 0x7e, 0xe7, 0xc3, 0xc3, 0xe7, 0xe7, 0x3c};
  56. byte jpfour[8] = {0xff, 0xc3, 0x81, 0x81, 0x81, 0x81, 0xc3, 0xff};
  57. byte titlepone[8] = {0xff, 0xff, 0xc0, 0xff, 0xff, 0xc0, 0xff, 0xff};
  58. byte titleptwo[8] = {0x18, 0x3c, 0x3c, 0x42, 0x7e, 0xc3, 0xc3, 0xc3};
  59. byte titlepthree[8] = {0xc3, 0xc3, 0xc3, 0x66, 0x66, 0x66, 0x3c, 0x18};
  60. byte titlepfour[8] = {0x18, 0x3c, 0x3c, 0x42, 0x7e, 0xc3, 0xc3, 0xc3};
  61. byte titlepfive[8] = {0xff, 0xff, 0xc0, 0xdf, 0xdf, 0xc0, 0xff, 0xff};
  62. byte titlepsix[8] = {0xff, 0xff, 0xc0, 0xff, oxff, 0xc0, 0x00, 0x00};
  63. byte kpone[8] = {0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00};
  64. byte kptwo[8] = {0x00, 0x00, 0x18, 0x24, 0x24, 0x18 0x00, 0x00};
  65. byte kpthree[8] = {0x00, 0x18, 0x00, 0x42, 0x42, 0x00, 0x18, 0x00};
  66. byte kpfour[8] = {0x18, 0x00, 0x00, 0x42, 0x42 0x00, 0x00, 0x18};
  67. byte kpfive[8] = {0xff, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0xff};
  68. byte kpsix[8] = {0xff, 0xe7, 0xe7, 0x81, 0x81, 0xe7, 0xe7, 0xff};
  69. byte kpseven[8] = {0xff, 0xff, oxff, 0xe7, 0xe7, 0xff, 0xff, 0xff};
  70. byte lpone[8] = {0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00};
  71. byte lptwo[8] = {0x00, 0x00, 0x36, 0xff, 0xff, 0x18, 0x00, 0x00};
  72. byte lpthree[8] = {0x00, 0x00, 0x18, 0xff, 0xff, 0xc3, 0x00, 0x00};
  73. byte lpfour[8] = {0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00};
  74. byte mpone[8] = {0xc0, 0xc0, 0xc6, 0xff, 0xff, 0xc0, 0xc0, oxc0};
  75. byte mptwo[8] = {0xc0, 0xc6, 0xc6, 0xff, 0xff, 0xd0, 0xc0, 0xc0};
  76. byte mpthree[8] = {0xc0, 0xc0, 0xD8, 0xff, 0xff, 0xc6, 0xc0, 0xc0};
  77. byte mpfour[8] = {0xc0, 0xc0, 0xc6, 0xff, 0xff, 0xc6, 0xc0, 0xc0};
  78. byte npone[8] = {0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x18, 0x18};
  79. byte nptwo[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
  80. byte npthree[8] = {0xc0, 0xc0, 0xc0, 0x24, 0x24, 0xc0, 0xc0, 0xc0};
  81. byte npfour[8] = {0xc0, 0xc0, 0xc0, 0x42, 0x42, 0xc0, 0xc0, 0xc0};
  82. byte npfive[8] = {0xc0, 0xc0, 0xc0, 0x81, 0x81, 0xc0, 0xc0, 0xc0};
  83. byte opone[8] = {0xff, 0x7f, 0x3f, 0x1f, 0xfh, 0x7h, 0x3h, 0x00};
  84. byte optwo[8] = {0x00, 0x3h, 0x7h, 0xfh, 0x1f, 0x3f, 0x7f, 0xff};
  85. byte ppone[8] = {0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00};
  86. byte pptwo[8] = {0x00, 0x00, 0x00, 0x7e, 0x7e, 0x00, 0x00, 0x00};
  87. byte ppthree[8] = {0x00, 0x00, 0x00, 0xe7, 0xe7, 0x00, 0x00, 0x00};
  88. byte ppfour[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
  89. byte qpone[8] = {0x00, 0x00, 0x00, 0xc0, 0xc0, 0x00, 0x00, 0x00};
  90. byte qptwo[8] = {0x00, 0x30, 0x30, 0xc0, 0xc0, 0x00, 0x00, 0x00};
  91. byte qpthree[8] = {0x00, 0x30, 0x30, 0xch, 0xch, 0x00, 0x00, 0x00};
  92. byte qpfour[8] = {0x00, 0x00, 0x3h, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  93. byte rpone[8] = {0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81};
  94. byte rptwo[8] = {0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3};
  95. byte rpthree[8] = {0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7};
  96. byte rpfour[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
  97. byte rpfive[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
  98. byte spone[8] = {0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  99. byte sptwo[8] = {0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  100. byte spthree[8] = {0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00};
  101. byte spfour[8] = {0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00};
  102. byte spfive[8] = {0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00};
  103. byte spsix[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00};
  104. byte spseven[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00};
  105. byte speight[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18};
  106. byte tpone[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  107. byte tptwo[8] = {0xe0, 0xe0, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00};
  108. byte tpthree[8] = {0xf0, 0xf0, 0xf0, x0f0, 0x00, 0x00, 0x00, 0x00};
  109. byte tpfour[8] = {0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0x00, 0x00, 0x00};
  110. byte tpfive[8] = {0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0x00, 0x00};
  111. byte tpsix[8] = {0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x00};
  112. byte tpseven[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
  113. byte upone[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
  114. byte uptwo[8] = {0x00, 0x6h, 0x6h, 0x00, 0x00, 0x60, 0x60, 0x00};
  115. byte upthree[8] = {0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18};
  116. byte upfour[8] = {0x00, 0x60, 0x60, 0x00, 0x00, 0x6h, 0x6h, 0x00};
  117. byte upfive[8] = {0x00, 0x00, 0x00, 0xc3, 0xc3, 0x00, 0x00, 0x00};
  118. byte vpone[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x3h, 0x3h};
  119. byte vptwo[8] = {0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xfh, 0xfh};
  120. byte vpthree[8] = {0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c};
  121. byte vpfour[8] = {0xfh, oxfh, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0};
  122. byte wpone[8] = {0xfh, oxfh, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0};
  123. byte wptwo[8] = {0x3c, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x3c};
  124. byte wpthree[8] = {0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0xfh, 0xfh};
  125. byte wpfour[8] = {0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x3h, 0x3h};
  126. byte xpone[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
  127. byte xptwo[8] = {0xc0, 0xc0, 0x3c, 0x3c, 0x3c, 0x3c, 0xc0, 0xc0};
  128. byte xpthree[8] = {0xc0, 0x66, 0x66, 0x3c, 0x3c, 0x66, 0x66, 0xc0};
  129. byte xpfour[8 = {0xc3, 0x37, 0x7e, 0x3c 0x3c, 0x7e, 0x37, 0xc3};
  130. byte ypone[8] = {0xc3, 0x37, 0x7e, 0x3c 0x3c, 0x7e, 0x37, 0xc3};
  131. byte yptwo[8] = {0xc0, 0x66, 0x66, 0x3c, 0x3c, 0x66, 0x66, 0xc0};
  132. byte ypthree[8] = {0xc0, 0xc0, 0x3c, 0x3c, 0x3c, 0x3c, 0xc0, 0xc0};
  133. byte ypfour[8] = {0xc0, 0xc0, 0xc0, 0x18, 0x18, 0xc0, 0xc0, 0xc0};
  134. byte blank[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  135.  
  136.  
  137. printByte(apone);
  138. delay(5);
  139.  
  140. printByte(aptwo);
  141. delay(5);
  142.  
  143. printByte(apthree);
  144. delay(5);
  145.  
  146. printByte(apfour);
  147. delay(5);
  148.  
  149. printByte(apfive);
  150. delay(5);
  151.  
  152. printByte(apsix);
  153. delay(5);
  154.  
  155. printbyte(bpone);
  156. delay(10);
  157.  
  158. printByte(bptwo);
  159. delay(10);
  160.  
  161. printByte(bpthree);
  162. delay(10);
  163.  
  164. printByte(cpone);
  165. delay(7);
  166.  
  167. printByte(cptwo);
  168. delay(7);
  169.  
  170. printByte(cpthree);
  171. delay(7);
  172.  
  173. printByte(epone);
  174. delay(7);
  175.  
  176. printByte(eptwo);
  177. delay(7);
  178.  
  179. printByte(epthree);
  180. delay(7);
  181.  
  182. printByte(fpone);
  183. delay(6);
  184.  
  185. printByte(fptwo);
  186. delay(6);
  187.  
  188. printByte(fpthree);
  189. delay(6);
  190.  
  191. printByte(hptwo);
  192. delay(19);
  193.  
  194. printByte(hpthree);
  195. delay(19);
  196.  
  197. printByte(gptwo);
  198. delay(17);
  199.  
  200. printByte(gpthree);
  201. delay(17);
  202.  
  203. printByte(fpone);
  204. delay(9);
  205.  
  206. printByte(fptwo);
  207. delay(9);
  208.  
  209. printByte(fpthree);
  210. delay(9);
  211.  
  212. printByte(fpfour);
  213. delay(9);
  214.  
  215. printByte(opone);
  216. delay(18);
  217.  
  218. printByte(optwo);
  219. delay(18);
  220.  
  221. printByte(fpone);
  222. delay(9);
  223.  
  224. printByte(fptwo);
  225. delay(9);
  226.  
  227. printByte(fpthree);
  228. delay(9);
  229.  
  230. printByte(fpfour);
  231. delay(9);
  232.  
  233. printByte(apone);
  234. delay(4);
  235.  
  236. printByte(aptwo);
  237. delay(4);
  238.  
  239. printByte(apthree);
  240. delay(4);
  241.  
  242. printByte(apfour);
  243. delay(4);
  244.  
  245. printByte(apfive);
  246. delay(4);
  247.  
  248. printByte(apsix);
  249. delay(4);
  250.  
  251. printByte(apsix);
  252. delay(4);
  253.  
  254. printByte(apfive);
  255. delay(4);
  256.  
  257. printByte(apfour);
  258. delay(4);
  259.  
  260. printByte(apthree);
  261. delay(4);
  262.  
  263. printByte(aptwo);
  264. delay(4);
  265.  
  266. printByte(apone);
  267. delay(4);
  268.  
  269. printByte(epone);
  270. delay(8);
  271.  
  272. printByte(eptwo);
  273. delay(8);
  274.  
  275. printByte(epthree);
  276. delay(8);
  277.  
  278. printByte(fpone);
  279. delay(3);
  280.  
  281. printByte(fptwo);
  282. delay(3);
  283.  
  284. printByte(fpthree);
  285. delay(3);
  286.  
  287. printByte(fpfour);
  288. delay(3);
  289.  
  290. printByte(opone);
  291. delay(16);
  292.  
  293. printByte(optwo);
  294. delay(16);
  295.  
  296. printByte(lpone);
  297. delay(11);
  298.  
  299. printByte(lptwo);
  300. delay(11);
  301.  
  302. printByte(lpthree);
  303. delay(11);
  304.  
  305. printByte(lpfour);
  306. delay(11);
  307.  
  308. printByte(ypone);
  309. delay(29);
  310.  
  311. printByte(yptwo);
  312. delay(29)
  313.  
  314. printByte(rpone);
  315. delay(37);
  316.  
  317. printByte(rptwo);
  318. delay(37);
  319.  
  320. printByte(apone);
  321. delay(12);
  322.  
  323. printByte(aptwo);
  324. delay(12);
  325.  
  326. printByte(apthree);
  327. delay(12);
  328.  
  329. printByte(apfour);
  330. delay(12);
  331.  
  332. printByte(apfive);
  333. delay(12);
  334.  
  335. printByte(apsix);
  336. delay(12);
  337.  
  338. printByte(fptwo);
  339. delay(27);
  340.  
  341. printByte(fpthree);
  342. delay(27);
  343.  
  344. printByte(fpfour);
  345. delay(27);
  346.  
  347. printByte(fpfour);
  348. delay(11);
  349.  
  350. printByte(fpthree);
  351. delay(11);
  352.  
  353. printByte(fptwo);
  354. delay(11);
  355.  
  356. printByte(fpone);
  357. delay(11);
  358.  
  359. printByte(ipone);
  360. delay(27);
  361.  
  362. printByte(iptwo);
  363. delay(27);
  364.  
  365. printByte(ipthree);
  366. delay(27);
  367.  
  368. printByte(kpone);
  369. delay(20)
  370.  
  371. printByte(kptwo);
  372. delay(20)
  373.  
  374. printByte(kpthree);
  375. delay(20)
  376.  
  377. printByte(kpfour);
  378. delay(20);
  379.  
  380. printByte(kpone);
  381. delay(40)
  382.  
  383. printByte(kptwo);
  384. delay(40)
  385.  
  386. printByte(kpthree);
  387. delay(40)
  388.  
  389. printByte(kpfour);
  390. delay(40);
  391. \
  392. printByte(kpone);
  393. delay(40)
  394.  
  395. printByte(kptwo);
  396. delay(40)
  397.  
  398. printByte(kpthree);
  399. delay(40)
  400.  
  401. printByte(kpfour);
  402. delay(40);
  403.  
  404. printByte(kpone);
  405. delay(40)
  406.  
  407. printByte(kptwo);
  408. delay(40)
  409.  
  410. printByte(kpthree);
  411. delay(40)
  412.  
  413. printByte(kpfour);
  414. delay(40);
  415.  
  416. printByte(kpone);
  417. delay(17)
  418.  
  419. printByte(kptwo);
  420. delay(17)
  421.  
  422. printByte(kpthree);
  423. delay(17)
  424.  
  425. printByte(kpfour);
  426. delay(17);
  427.  
  428. printByte(kpone);
  429. delay(28)
  430.  
  431. printByte(kptwo);
  432. delay(28)
  433.  
  434. printByte(kpthree);
  435. delay(28)
  436.  
  437. printByte(kpfour);
  438. delay(28);
  439.  
  440. printByte(kpone);
  441. delay(40)
  442.  
  443. printByte(kptwo);
  444. delay(40)
  445.  
  446. printByte(kpthree);
  447. delay(40)
  448.  
  449. printByte(kpfour);
  450. delay(40);
  451.  
  452. printByte(kpone);
  453. delay(40)
  454.  
  455. printByte(kptwo);
  456. delay(40)
  457.  
  458. printByte(kpthree);
  459. delay(40)
  460.  
  461. printByte(kpfour);
  462. delay(40);
  463.  
  464. printByte(titlepone);
  465. delay(10);
  466.  
  467. printByte(blank);
  468. delay(1);
  469.  
  470. printByte(titlepone);
  471. delay(10);
  472.  
  473. printByte(blank);
  474. delay(1);
  475.  
  476. printByte(titlepone);
  477. delay(10);
  478.  
  479. printByte(blank);
  480. delay(1);
  481.  
  482. printByte(titlepone);
  483. delay(10);
  484.  
  485. printByte(blank);
  486. delay(1);
  487.  
  488. printByte(titlepone);
  489. delay(1);
  490.  
  491. printByte(blank);
  492. delay(1);
  493.  
  494. printByte(titlepone);
  495. delay(1);
  496.  
  497. printByte(blank);
  498. delay(1);
  499.  
  500. printByte(titlepone);
  501. delay(1);
  502.  
  503. printByte(blank);
  504. delay(1);
  505.  
  506. printByte(titlepone);
  507. delay(1);
  508.  
  509. printByte(blank);
  510. delay(1);
  511.  
  512. printByte(titlepone);
  513. delay(1);
  514.  
  515. printByte(blank);
  516. delay(1);
  517.  
  518. printByte(titlepone);
  519. delay(1);
  520.  
  521. printByte(blank);
  522. delay(1);
  523.  
  524. printByte(titlepone);
  525. delay(1);
  526.  
  527. printByte(blank);
  528. delay(1);
  529.  
  530. printByte(titlepone);
  531. delay(1);
  532.  
  533. printByte(blank);
  534. delay(1);
  535.  
  536. printByte(titlepone);
  537. delay(1);
  538.  
  539. printByte(blank);
  540. delay(1);
  541.  
  542. printByte(titlepone);
  543. delay(1);
  544.  
  545. printByte(blank);
  546. delay(1);
  547.  
  548. printByte(titlepone);
  549. delay(1);
  550.  
  551. printByte(blank);
  552. delay(1);
  553.  
  554. printByte(titlepone);
  555. delay(1);
  556.  
  557. printByte(blank);
  558. delay(1);
  559.  
  560. printByte(titlepone);
  561. delay(1);
  562.  
  563. printByte(blank);
  564. delay(1);
  565.  
  566. printByte(titlepone);
  567. delay(1);
  568.  
  569. printByte(blank);
  570. delay(1);
  571.  
  572. printByte(titlepone);
  573. delay(1);
  574.  
  575. printByte(blank);
  576. delay(1);
  577.  
  578. printByte(titlepone);
  579. delay(2);
  580.  
  581. printByte(titleptwo);
  582. delay(3);
  583.  
  584. printByte(titlepthree);
  585. delay(1);
  586.  
  587. printByte(titlepfour);
  588. delay(2);
  589.  
  590. printByte(titlepfive);
  591. delay(3);
  592.  
  593. printByte(titlepsix);
  594. delay(2);
  595.  
  596. printByte(mpone);
  597. delay(200);
  598.  
  599. printByte(mptwo);
  600. delay(200);
  601.  
  602. printByte(qpone);
  603. delay(23);
  604.  
  605. printByte(qptwo);
  606. delay(23);
  607.  
  608. printByte(qpthree);
  609. delay(23);
  610.  
  611. printByte(qpfour);
  612. delay(23);
  613.  
  614. printByte(npone);
  615. delay(15);
  616.  
  617. printByte(nptwo);
  618. delay(15);
  619.  
  620. printByte(npthree);
  621. delay(15);
  622.  
  623. printByte(npfour);
  624. delay(15);
  625.  
  626. printByte(opone)
  627. delay(25);
  628.  
  629. printByte(optwo)
  630. delay(25);
  631.  
  632. printByte(xpone);
  633. delay(30);
  634.  
  635. printByte(xptwo);
  636. delay(30);
  637.  
  638. printByte(xpthree);
  639. delay(30);
  640.  
  641. printByte(xpfour);
  642. delay(30);
  643.  
  644. printByte(lpone);
  645. delay(18);
  646.  
  647. printByte(lpfour);
  648. delay(18);
  649.  
  650. printByte(xpone);
  651. delay(36);
  652.  
  653. printByte(xptwo);
  654. delay(36);
  655.  
  656. printByte(xpthree);
  657. delay(36);
  658.  
  659. printByte(xpfour);
  660. delay(36);
  661.  
  662. printByte(ypone);
  663. delay(36);
  664.  
  665. printByte(yptwo);
  666. delay(36);
  667.  
  668. printByte(ypthree);
  669. delay(36);
  670.  
  671. printByte(ypfour);
  672. delay(36);
  673.  
  674. printByte(vpone);
  675. delay(3);
  676.  
  677. printByte(vptwo);
  678. delay(3);
  679.  
  680. printByte(vpthree);
  681. delay(3);
  682.  
  683. printByte(vpfour);
  684. delay(3);
  685.  
  686.  
  687. printByte(npone);
  688. delay(15);
  689.  
  690. printByte(nptwo);
  691. delay(15);
  692.  
  693. printByte(npthree);
  694. delay(15);
  695.  
  696. printByte(npfour);
  697. delay(15);
  698.  
  699. printByte(mpone);
  700. delay(200);
  701.  
  702. printByte(mptwo);
  703. delay(200);
  704.  
  705. printByte(qpone);
  706. delay(23);
  707.  
  708. printByte(qptwo);
  709. delay(23);
  710.  
  711. printByte(qpthree);
  712. delay(23);
  713.  
  714. printByte(qpfour);
  715. delay(23);
  716.  
  717. printByte(npone);
  718. delay(15);
  719.  
  720. printByte(nptwo);
  721. delay(15);
  722.  
  723. printByte(npthree);
  724. delay(15);
  725.  
  726. printByte(npfour);
  727. delay(15);
  728.  
  729. printByte(opone)
  730. delay(25);
  731.  
  732. printByte(optwo)
  733. delay(25);
  734.  
  735. printByte(xpone);
  736. delay(30);
  737.  
  738. printByte(xptwo);
  739. delay(30);
  740.  
  741. printByte(xpthree);
  742. delay(30);
  743.  
  744. printByte(xpfour);
  745. delay(30);
  746.  
  747. printByte(lpone);
  748. delay(18);
  749.  
  750. printByte(lpfour);
  751. delay(18);
  752.  
  753. printByte(xpone);
  754. delay(36);
  755.  
  756. printByte(xptwo);
  757. delay(36);
  758.  
  759. printByte(xpthree);
  760. delay(36);
  761.  
  762. printByte(xpfour);
  763. delay(36);
  764.  
  765. printByte(ypone);
  766. delay(36);
  767.  
  768. printByte(yptwo);
  769. delay(36);
  770.  
  771. printByte(ypthree);
  772. delay(36);
  773.  
  774. printByte(ypfour);
  775. delay(36);
  776.  
  777. printByte(vpone);
  778. delay(3);
  779.  
  780. printByte(vptwo);
  781. delay(3);
  782.  
  783. printByte(vpthree);
  784. delay(3);
  785.  
  786. printByte(vpfour);
  787. delay(3);
  788.  
  789.  
  790. printByte(npone);
  791. delay(15);
  792.  
  793. printByte(nptwo);
  794. delay(15);
  795.  
  796. printByte(npthree);
  797. delay(15);
  798.  
  799. printByte(npfour);
  800. delay(15);
  801.  
  802. printByte(xpone);
  803. delay(36);
  804.  
  805. printByte(xptwo);
  806. delay(36);
  807.  
  808. printByte(xpthree);
  809. delay(36);
  810.  
  811. printByte(xpfour);
  812. delay(36);
  813.  
  814. printByte(ypone);
  815. delay(36);
  816.  
  817. printByte(yptwo);
  818. delay(36);
  819.  
  820. printByte(ypthree);
  821. delay(36);
  822.  
  823. printByte(ypfour);
  824. delay(36);
  825.  
  826. printByte(xpone);
  827. delay(36);
  828.  
  829. printByte(vpone);
  830. delay(3);
  831.  
  832. printByte(npone);
  833. delay(15);
  834.  
  835. printByte(vpone);
  836. delay(3);
  837.  
  838. printByte(titlepone);
  839. delay(54);
  840.  
  841. printByte(titleptwo);
  842. delay(3);
  843.  
  844. printByte(titlepthree);
  845. delay(1);
  846.  
  847. printByte(titlepfour);
  848. delay(2);
  849.  
  850. printByte(titlepfive);
  851. delay(3);
  852.  
  853. printByte(titlepsix);
  854. delay(2);
  855.  
  856. l.clearDisplay(0);
  857. delay (1000)
  858. }
  859.  
  860. void printByte (byte character [])
  861. {
  862.  int i = 0;
  863.  for(i=0;i<8;i++)
  864.  {
  865.    lc.cetRow(0,1,character[i]);
  866.  }
  867. }
Add Comment
Please, Sign In to add comment