Created
April 29, 2013 22:46
-
-
Save Robotonics/5485410 to your computer and use it in GitHub Desktop.
Simple down arrow 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
/* down arrow bitmap file for GLCD library */ | |
/* Bitmap created by RoboTonics */ | |
/* Date: 29 Apr 2013 */ | |
/* Image Pixels = 72 */ | |
/* Image Bytes = 9 */ | |
#include <inttypes.h> | |
#include <avr/pgmspace.h> | |
#ifndef downarrow_H | |
#define downarrow_H | |
const uint8_t downarrow[] PROGMEM = { | |
9, // width | |
8, // height | |
/* page 0 (lines 0-7) */ | |
0x08,0x18,0x38,0x78,0xf8,0x78,0x38,0x18,0x08, | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment