Quick demo for LED 8x8 Matrix with FRDM-K82F

/media/uploads/suntopbd/img_20180523_081229.jpg

main.cpp

Committer:
suntopbd
Date:
2018-06-03
Revision:
2:4e21ea1275a1
Parent:
1:1088a4658fc2
Child:
3:6cdeb3b19afb

File content as of revision 2:4e21ea1275a1:

// copyleft by suntopbd 23.5.18
/*
PINOUT
https://os.mbed.com/platforms/FRDM-K82F/#board-pinout
should work with any other board with 16 I/O available
*/

#include "mbed.h"
#include "Char_Fonts.h"

int main() 

{
 disp_off();
 speed_down(0.5);
 gap_up(0.2);
    
    while (1) 
    {
          // Prints M B E D on Dot Matrix  //
          
     A();space();
     Q();U();I();C();K();space();
     B();R();O();W();N();space();
     F();O();X();space();
     J();U();M();P();E();D();space();
     O();V();E();R();space();
     T();H();E();space();
     L();A();Z();Y();space();
     D();O();G();S();
     space(); // show a blank display
             
    }

//..........................................//
}