aboutsummaryrefslogtreecommitdiffstats
path: root/avr-test2/src/font.h
blob: 006414b722015266c359d87167115c5a5b6d9f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FONT_H
#define FONT_H

#include <avr/pgmspace.h>

void font_getchar (char chr, unsigned char dst[5]);
void font_getpath (unsigned char path, unsigned char *destination, int length);
void font_getbitmap (char bitmap, unsigned char dst[8]);
unsigned char font_getbitmappixel ( char bitmap, char x, char y);



#endif