Created
April 30, 2013 23:31
-
-
Save Robotonics/5492705 to your computer and use it in GitHub Desktop.
speaker on 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
/* speaker on icon bitmap file for GLCD library */ | |
/* Bitmap created by RoboTonics */ | |
/* Date: 30 Apr 2013 */ | |
/* Image Pixels = 256 */ | |
/* Image Bytes = 32 */ | |
#include <inttypes.h> | |
#include <avr/pgmspace.h> | |
#ifndef speakeron_H | |
#define speakeron_H | |
const uint8_t speakeron[] PROGMEM = { | |
16, // width | |
16, // height | |
/* page 0 (lines 0-7) */ | |
0xe0, 0xe0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0x00, 0xf8, 0x00, 0xe0, 0x00, 0xc0, 0x00, 0x80, | |
/* page 1 (lines 8-15) */ | |
0x07, 0x07, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff, 0x00, 0x1f, 0x00, 0x07, 0x00, 0x03, 0x00, 0x01, | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment