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