From 4d995d1a096fb309da153358afeee34a7dd4592a Mon Sep 17 00:00:00 2001 From: bton Date: Wed, 10 Apr 2024 21:48:16 +0200 Subject: [PATCH] test --- oled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oled.py b/oled.py index 9def635..57c03a0 100644 --- a/oled.py +++ b/oled.py @@ -9,6 +9,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") draw.text((30, 0), "Hello World", fill="white") time.sleep(10)