Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
algo.h
- Committer:
- cristianvillarraga
- Date:
- 2018-11-16
- Revision:
- 0:b09782a64039
File content as of revision 0:b09782a64039:
#ifndef ALGO_H #define ALGO_H #include "mbed.h" #define tipo_c 01 #define tipo_s 02 #define tipo_t 03 #define tipo_i 04 #define tipo_l 05 uint8_t FIG_C[8]={0b00000000,0b11000000,0b11000000,0,0b11000000,0b11000000,0,0}; uint8_t FIG_S[8]={0b00000000,0b01100000,0b11000000,0,0b10000000,0b11000000,0b01000000,0}; uint8_t FIG_T[8]={0b00000000,0b01000000,0b11100000,0,0b10000000,0b11000000,0b10000000,0}; uint8_t FIG_I[8]={0b10000000,0b10000000,0b10000000,0,0,0b11100000,0,0}; uint8_t FIG_L[8]={0b10000000,0b10000000,0b11000000,0,0,0b11100000,0b10000000,0}; #endif