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:
3:6cdeb3b19afb
Parent:
2:4e21ea1275a1

File content as of revision 3:6cdeb3b19afb:

// 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.3);
 gap_up(0.1);
    
    while (1) 
    {
          // Prints A QUICK BROWN FOX JUMPED OVER THE LAZY DOGS !  //
          
     space(); // show a blank display     
     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
     Amark();
             
    }

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