Skip to content

Instantly share code, notes, and snippets.

@Robotonics
Created April 29, 2013 22:46
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/5485410 to your computer and use it in GitHub Desktop.
Save Robotonics/5485410 to your computer and use it in GitHub Desktop.
Simple down arrow for Arduino GLCD library
/* 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