Quick demo for LED 8x8 Matrix with FRDM-K82F

/media/uploads/suntopbd/img_20180523_081229.jpg

Committer:
suntopbd
Date:
Sun Jun 03 01:14:51 2018 +0000
Revision:
2:4e21ea1275a1
Parent:
1:1088a4658fc2
Child:
3:6cdeb3b19afb
Alphabet Library added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
suntopbd 0:b16b3c2d882e 1 // copyleft by suntopbd 23.5.18
suntopbd 0:b16b3c2d882e 2 /*
suntopbd 0:b16b3c2d882e 3 PINOUT
suntopbd 0:b16b3c2d882e 4 https://os.mbed.com/platforms/FRDM-K82F/#board-pinout
suntopbd 0:b16b3c2d882e 5 should work with any other board with 16 I/O available
suntopbd 0:b16b3c2d882e 6 */
suntopbd 0:b16b3c2d882e 7
suntopbd 2:4e21ea1275a1 8 #include "mbed.h"
suntopbd 2:4e21ea1275a1 9 #include "Char_Fonts.h"
suntopbd 0:b16b3c2d882e 10
suntopbd 2:4e21ea1275a1 11 int main()
suntopbd 1:1088a4658fc2 12
suntopbd 2:4e21ea1275a1 13 {
suntopbd 0:b16b3c2d882e 14 disp_off();
suntopbd 2:4e21ea1275a1 15 speed_down(0.5);
suntopbd 2:4e21ea1275a1 16 gap_up(0.2);
suntopbd 0:b16b3c2d882e 17
suntopbd 0:b16b3c2d882e 18 while (1)
suntopbd 0:b16b3c2d882e 19 {
suntopbd 2:4e21ea1275a1 20 // Prints M B E D on Dot Matrix //
suntopbd 1:1088a4658fc2 21
suntopbd 2:4e21ea1275a1 22 A();space();
suntopbd 2:4e21ea1275a1 23 Q();U();I();C();K();space();
suntopbd 2:4e21ea1275a1 24 B();R();O();W();N();space();
suntopbd 2:4e21ea1275a1 25 F();O();X();space();
suntopbd 2:4e21ea1275a1 26 J();U();M();P();E();D();space();
suntopbd 2:4e21ea1275a1 27 O();V();E();R();space();
suntopbd 2:4e21ea1275a1 28 T();H();E();space();
suntopbd 2:4e21ea1275a1 29 L();A();Z();Y();space();
suntopbd 2:4e21ea1275a1 30 D();O();G();S();
suntopbd 2:4e21ea1275a1 31 space(); // show a blank display
suntopbd 2:4e21ea1275a1 32
suntopbd 0:b16b3c2d882e 33 }
suntopbd 0:b16b3c2d882e 34
suntopbd 0:b16b3c2d882e 35 //..........................................//
suntopbd 1:1088a4658fc2 36 }