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")