Created
April 30, 2013 23:33
-
-
Save Robotonics/5492716 to your computer and use it in GitHub Desktop.
smiley robot face icon bitmap 16x16 for Arduino GLCD library
This file contains hidden or 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
/* smiley1 bitmap file for GLCD library */ | |
/* Bitmap created by RoboTonics */ | |
/* Date: 30 Apr 2013 */ | |
/* Image Pixels = */ | |
/* Image Bytes = */ | |
#include <inttypes.h> | |
#include <avr/pgmspace.h> | |
#ifndef smiley1_H | |
#define smiley1_H | |
const uint8_t smiley1[] PROGMEM = { | |
16, // width | |
16, // height | |
/* page 0 (lines 0-7) */ | |
0xff,0x3f,0x0f,0x07,0x73,0x53,0x73,0x03,0x03,0x73,0x53,0x73,0x07,0x0f,0x3f,0xff, | |
/* page 1 (lines 8-15) */ | |
0xff,0xfe,0xf0,0xe0,0xc6,0xc8,0xd8, 0xd8,0xd8,0xd8,0xc8,0xc6,0xe0,0xf0,0xfe,0xff, | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment