TTK4155 Lab Node 1
Term project in the NTNU course TTK4155 Embedded and Industrial Computer Systems Design
Loading...
Searching...
No Matches
fonts.h
Go to the documentation of this file.
1/*
2 * fonts.h
3 *
4 * Library of fonts
5 * Large: 8x8, normal: 5x7 and small: 4x7
6 * Taken from Course resources on blackboard
7 */
8#ifndef FONTS_H_
9#define FONTS_H_
10
11#include <avr/pgmspace.h>
12
13extern const unsigned char PROGMEM font8[95][8];
14extern const unsigned char PROGMEM font5[95][5];
15extern const unsigned char PROGMEM font4[95][4];
16
17#endif /* FONTS_H_ */
const unsigned char PROGMEM font5[95][5]
Definition fonts.c:104
const unsigned char PROGMEM font4[95][4]
Definition fonts.c:203
const unsigned char PROGMEM font8[95][8]
Definition fonts.c:5
static const char log_prefix_critical[] PROGMEM
Definition log.h:24