From a14cc42c9bd1119d47dc0bfc2c5d75a12b8e5f4f Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:52:35 +0200 Subject: [PATCH] test --- oled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oled.py b/oled.py index bdc03ec..d8013f4 100644 --- a/oled.py +++ b/oled.py @@ -19,7 +19,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, position_x, (255,255,255), size=2) + display.text(str(balance), position_x, 0, (255,255,255), size=2) display.show() if __name__ == "__main__":