From 524905ba084a84f8984034f4c96243f72c0d1c9b Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:45:14 +0200 Subject: [PATCH] test --- oled.py | 1 + 1 file changed, 1 insertion(+) diff --git a/oled.py b/oled.py index 24d06b8..bda0d2c 100644 --- a/oled.py +++ b/oled.py @@ -14,6 +14,7 @@ def Balance(user_id, user_name, balance): display.text(str(user_id), 0, 0, (255,255,255), size=1) display.text(str(user_name), 50, 0, (255,255,255), size=1) display.text(str(balance), 0, 50, (255,255,255), size=2) + display.show() if __name__ == "__main__": Balance(1, "Test", 255)