wallah pardon sur le coran de l eglise c'est pas de ma faute

This commit is contained in:
2026-03-30 20:53:53 +02:00
parent 8c3713eff6
commit 72a86ff512
7 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import tm1637
import time as t
# attention : mode BOARD
display = tm1637.TM1637(clk=7, dio=11)
display.brightness(2)
print("Test affichage...")
try:
while True:
display.show("1234")
print("1234")
t.sleep(2)
display.show("0000")
print("0000")
t.sleep(2)
except KeyboardInterrupt:
display.show("----")
print("Stop")