From 232cb3096503facdaec492fcbbaa885478c14dea Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:55:48 +0200 Subject: [PATCH] test --- oled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oled.py b/oled.py index 996967a..f8caace 100644 --- a/oled.py +++ b/oled.py @@ -12,7 +12,7 @@ def clear(): def Balance(user_name, balance): clear() display.text(str(user_name), 50, 0, (255,255,255), size=1) - display.text(str(balance), 0, 20, (255,255,255), size=2) + display.text(str(balance), 0, 15, (255,255,255), size=2) display.show() if __name__ == "__main__":