From 493863fcc0d0bc52a27631eeb76a85446f3e6760 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 29 Dec 2013 22:35:31 +0100 Subject: More advanced network IF with direct buffer support --- host/matelight/font.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 host/matelight/font.py (limited to 'host/matelight/font.py') diff --git a/host/matelight/font.py b/host/matelight/font.py new file mode 100644 index 0000000..a1c1dd6 --- /dev/null +++ b/host/matelight/font.py @@ -0,0 +1,5 @@ +from bdflib import reader as bdfreader # Used to read the bitmap font + +FONT = bdfreader.read_bdf(iter(open('fonts/unifont-6.3.20131020.bdf').readlines())) +FONT_HEIGHT = 16 + -- cgit