matekasse_NFC-Reader/oled.py

21 lines
511 B
Python
Raw Normal View History

2024-04-12 19:32:20 +00:00
from board import SCL, SDA
2024-04-12 19:20:15 +00:00
import busio
import adafruit_ssd1306
i2c = busio.I2C(SCL, SDA)
2024-04-12 19:34:37 +00:00
display = adafruit_ssd1306.SSD1306_I2C(128, 32, i2c)
2024-04-12 19:20:15 +00:00
2024-04-12 19:44:03 +00:00
def clear():
display.fill(0)
display.show()
2024-04-12 19:20:15 +00:00
2024-04-12 19:44:03 +00:00
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)
2024-04-12 19:44:39 +00:00
display.text(str(balance), 0, 50, (255,255,255), size=2)
2024-04-12 19:45:14 +00:00
display.show()
2024-04-12 19:20:15 +00:00
2024-04-12 19:44:03 +00:00
if __name__ == "__main__":
Balance(1, "Test", 255)