Add LCD example

This commit is contained in:
iabdalkader 2014-03-07 20:43:54 +02:00
parent ef6be8ab3c
commit 3ed30c4411

6
usr/examples/lcd.py Normal file
View File

@ -0,0 +1,6 @@
import sensor, imlib, lcd
lcd.init()
lcd.clear(0xFF)
while (True):
image = sensor.snapshot()
lcd.write_image(image)