Piezo Vibration Sensor demo

Dependencies:   PCA9622_LED8x8 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers font3x5.h Source File

font3x5.h

00001 /**
00002  *  3x5 bitmap font (decimal numbers from '0' to '9')
00003  *
00004  *  @author  Toyomasa WATARAI
00005  *  @version 1.0
00006  *  @date    25-July-2015
00007  *
00008  *
00009  */
00010 
00011 #ifndef FONT3X5_H
00012 #define FONT3X5_H
00013 
00014 const unsigned char font3x5[] = {
00015 0x1f, 0x11, 0x1f, // 0
00016 0x00, 0x1f, 0x00, // 1
00017 0x17, 0x15, 0x1d, // 2
00018 0x15, 0x15, 0x1f, // 3
00019 0x1c, 0x04, 0x1f, // 4
00020 0x1d, 0x15, 0x17, // 5
00021 0x1f, 0x15, 0x17, // 6
00022 0x1c, 0x10, 0x1f, // 7
00023 0x1f, 0x15, 0x1f, // 8
00024 0x1d, 0x15, 0x1f, // 9
00025 };
00026 
00027 #endif