From d3173e64c2282b29eca9a70eb9bd661a8ed3f2d0 Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:36:26 +0200 Subject: [PATCH] test --- oled.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/oled.py b/oled.py index 557742a..b502a02 100644 --- a/oled.py +++ b/oled.py @@ -26,10 +26,5 @@ display.fill(0) display.show() -# Set a pixel in the origin 0,0 position. -display.pixel(0, 0, 1) -# Set a pixel in the middle 64, 16 position. -display.pixel(64, 16, 1) -# Set a pixel in the opposite 127, 31 position. -display.pixel(127, 31, 1) +display.text("Test", 0, 0, (255,255,255), size=1) display.show()