Skip to content

Instantly share code, notes, and snippets.

@Robotonics
Created April 30, 2013 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Robotonics/5492705 to your computer and use it in GitHub Desktop.
Save Robotonics/5492705 to your computer and use it in GitHub Desktop.
speaker on icon bitmap 16x16 for Arduino GLCD Library
/* 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