2018-09-15 13:31:14 +02:00
|
|
|
/*
|
|
|
|
* font.h
|
2018-09-17 11:21:31 +02:00
|
|
|
* i2c
|
2018-09-15 13:31:14 +02:00
|
|
|
*
|
|
|
|
* Created by Michael Köhler on 13.09.18.
|
|
|
|
* Copyright 2018 Skie-Systems. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef _font_h_
|
|
|
|
#define _font_h_
|
2018-09-16 08:52:29 +02:00
|
|
|
#include <avr/pgmspace.h>
|
2018-09-15 13:31:14 +02:00
|
|
|
|
2018-09-16 08:52:29 +02:00
|
|
|
extern const char ssd1306oled_font[][6] PROGMEM;
|
2018-09-17 11:21:31 +02:00
|
|
|
extern const char special_char[][2] PROGMEM;
|
2018-09-15 13:31:14 +02:00
|
|
|
|
2018-09-15 13:54:47 +02:00
|
|
|
#endif
|