Files
nodemcu-fe/display.py
kristjan-komlosi 17a1625437 Create display.py
2017-06-27 12:49:42 +02:00

23 lines
328 B
Python

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