projects
/
EVA-2020-02-2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add two third party projects to the README
[EVA-2020-02-2.git]
/
examples
/
lcd.py
diff --git
a/examples/lcd.py
b/examples/lcd.py
index aa0e193604388cdd3ec8ac2de8b286b2bef639fc..10413b9193a103261202c65011b582f51c62b77a 100755
(executable)
--- a/
examples/lcd.py
+++ b/
examples/lcd.py
@@
-1,9
+1,16
@@
-#!/usr/bin/env python
+#!/usr/bin/env python
3
import ST7735
from PIL import Image, ImageDraw, ImageFont
import ST7735
from PIL import Image, ImageDraw, ImageFont
+from fonts.ttf import RobotoMedium as UserFont
+import logging
-print("""lcd.py - Hello, World! example on the 0.96" LCD.
+logging.basicConfig(
+ format='%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s',
+ level=logging.INFO,
+ datefmt='%Y-%m-%d %H:%M:%S')
+
+logging.info("""lcd.py - Hello, World! example on the 0.96" LCD.
Press Ctrl+C to exit!
Press Ctrl+C to exit!
@@
-32,7
+39,7
@@
draw = ImageDraw.Draw(img)
# Text settings.
font_size = 25
# Text settings.
font_size = 25
-font = ImageFont.truetype(
"fonts/Asap/Asap-Bold.ttf"
, font_size)
+font = ImageFont.truetype(
UserFont
, font_size)
text_colour = (255, 255, 255)
back_colour = (0, 170, 170)
text_colour = (255, 255, 255)
back_colour = (0, 170, 170)