-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73cc712
commit b9b5247
Showing
17 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_1_1_width 1 | ||
#define bitmap_1_1_height 1 | ||
static unsigned char bitmap_1_1_bits[] = { | ||
0x01 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_1_2_width 1 | ||
#define bitmap_1_2_height 2 | ||
static unsigned char bitmap_1_2_bits[] = { | ||
0x01, 0x00 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_1_3_width 1 | ||
#define bitmap_1_3_height 3 | ||
static unsigned char bitmap_1_3_bits[] = { | ||
0x01, 0x00, 0x01 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_1_4_width 1 | ||
#define bitmap_1_4_height 4 | ||
static unsigned char bitmap_1_4_bits[] = { | ||
0x01, 0x00, 0x01, 0x00 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_2_1_width 2 | ||
#define bitmap_2_1_height 1 | ||
static unsigned char bitmap_2_1_bits[] = { | ||
0x01 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_2_2_width 2 | ||
#define bitmap_2_2_height 2 | ||
static unsigned char bitmap_2_2_bits[] = { | ||
0x01, 0x02 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_2_3_width 2 | ||
#define bitmap_2_3_height 3 | ||
static unsigned char bitmap_2_3_bits[] = { | ||
0x01, 0x02, 0x01 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_2_4_width 2 | ||
#define bitmap_2_4_height 4 | ||
static unsigned char bitmap_2_4_bits[] = { | ||
0x01, 0x02, 0x01, 0x02 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_3_1_width 3 | ||
#define bitmap_3_1_height 1 | ||
static unsigned char bitmap_3_1_bits[] = { | ||
0x05 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_3_2_width 3 | ||
#define bitmap_3_2_height 2 | ||
static unsigned char bitmap_3_2_bits[] = { | ||
0x05, 0x02 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_3_3_width 3 | ||
#define bitmap_3_3_height 3 | ||
static unsigned char bitmap_3_3_bits[] = { | ||
0x05, 0x02, 0x05 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_3_4_width 3 | ||
#define bitmap_3_4_height 4 | ||
static unsigned char bitmap_3_4_bits[] = { | ||
0x05, 0x02, 0x05, 0x02 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_4_1_width 4 | ||
#define bitmap_4_1_height 1 | ||
static unsigned char bitmap_4_1_bits[] = { | ||
0x05 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_4_2_width 4 | ||
#define bitmap_4_2_height 2 | ||
static unsigned char bitmap_4_2_bits[] = { | ||
0x05, 0x0a }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_4_3_width 4 | ||
#define bitmap_4_3_height 3 | ||
static unsigned char bitmap_4_3_bits[] = { | ||
0x05, 0x0a, 0x05 }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define bitmap_4_4_width 4 | ||
#define bitmap_4_4_height 4 | ||
static unsigned char bitmap_4_4_bits[] = { | ||
0x05, 0x0a, 0x05, 0x0a }; |