Create display.py

This commit is contained in:
kristjan-komlosi
2017-06-27 12:49:42 +02:00
committed by GitHub
parent ac32f8df48
commit 17a1625437

22
display.py Normal file
View File

@@ -0,0 +1,22 @@
from machine import Pin
import time
import display
from display import oled
tipka=Pin(12, Pin.IN)
display.init()
oled.fill(1)
oled.show()
time.sleep(1)
oled.fill(0)
oled.show()
i=0
while tipka.value():
if i==60:
i=0
oled.fill(0)
var = input()
oled.text(var,0,i)
oled.show()
i=i+10