You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
283 B
C

/*
* font.h
6 years ago
*
*
* Created by Michael Kรถhler on 13.09.18.
* Copyright 2018 Skie-Systems. All rights reserved.
*
*/
#ifndef _font_h_
#define _font_h_
6 years ago
#include <avr/pgmspace.h>
6 years ago
extern const char ssd1306oled_font[][6] PROGMEM;
uint8_t getCharPosition(char value);
6 years ago
#endif