Piezo Vibration Sensor demo
Dependencies: PCA9622_LED8x8 mbed
font3x5.h
- Committer:
- MACRUM
- Date:
- 2015-07-26
- Revision:
- 0:2f98d8d6ef4b
File content as of revision 0:2f98d8d6ef4b:
/**
* 3x5 bitmap font (decimal numbers from '0' to '9')
*
* @author Toyomasa WATARAI
* @version 1.0
* @date 25-July-2015
*
*
*/
#ifndef FONT3X5_H
#define FONT3X5_H
const unsigned char font3x5[] = {
0x1f, 0x11, 0x1f, // 0
0x00, 0x1f, 0x00, // 1
0x17, 0x15, 0x1d, // 2
0x15, 0x15, 0x1f, // 3
0x1c, 0x04, 0x1f, // 4
0x1d, 0x15, 0x17, // 5
0x1f, 0x15, 0x17, // 6
0x1c, 0x10, 0x1f, // 7
0x1f, 0x15, 0x1f, // 8
0x1d, 0x15, 0x1f, // 9
};
#endif
Toyomasa Watarai