From 515a6a5c383392ccc2ee19f09b12d695defb1daa Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:45:59 +0200 Subject: [PATCH] test --- oled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oled.py b/oled.py index bda0d2c..6d755ca 100644 --- a/oled.py +++ b/oled.py @@ -13,7 +13,7 @@ def Balance(user_id, user_name, balance): clear() 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.text(str(balance), 0, 10, (255,255,255), size=2) display.show() if __name__ == "__main__":