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.
Diff: algo.h
- Revision:
- 0:b09782a64039
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/algo.h Fri Nov 16 13:27:25 2018 +0000 @@ -0,0 +1,19 @@ +#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 \ No newline at end of file