Skip to content

Instantly share code, notes, and snippets.

@MrSmartus
MrSmartus / Digit font 16x8 for DMD and DMD2
Created January 5, 2018 14:33
Font for DMD dot matrix with Arduino, library DMD2. Fullsize font with some symbols. Created for timer project. Tested.
//font 16x8 for DMD. Chars: 30(48) - 39(57)
#include <inttypes.h>
#ifdef __AVR__
#include <avr/pgmspace.h>
#elif defined (ESP8266)
#include <pgmspace.h>
#else
#define PROGMEM
#endif
@MrSmartus
MrSmartus / Digit font 16x10 for DMD
Created December 28, 2017 07:30
Font for DMD dot matrix with Arduino, library DMD2. Fullsize font with some symbols. Created for timer project. Tested.
//font 16x10 for DMD. Chars: 2D(45) - 3E(62)
#include <inttypes.h>
#ifdef __AVR__
#include <avr/pgmspace.h>
#elif defined (ESP8266)
#include <pgmspace.h>
#else
#define PROGMEM
#endif