Skip to content

Instantly share code, notes, and snippets.

@Robotonics
Created April 30, 2013 23:33
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/5492716 to your computer and use it in GitHub Desktop.
Save Robotonics/5492716 to your computer and use it in GitHub Desktop.
smiley robot face icon bitmap 16x16 for Arduino GLCD library
/* 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