From a1f7291e77723b1bce497afb34c43b6c18451e52 Mon Sep 17 00:00:00 2001 From: bton Date: Wed, 10 Apr 2024 21:35:53 +0200 Subject: [PATCH] test --- oled.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oled.py b/oled.py index 65350bd..12921be 100644 --- a/oled.py +++ b/oled.py @@ -8,5 +8,6 @@ serial = i2c(port=1, address=0x3C) device = ssd1306(serial) with canvas(device) as draw: - draw.rectangle(device.bounding_box, outline="white", fill="black") + #draw.rectangle(device.bounding_box, outline="white", fill="black") + print("test") draw.text((30, 40), "Hello World", fill="white")