openmv/usr/examples/lcd.py
2014-03-19 01:44:47 +02:00

6 lines
119 B
Python

import sensor, imlib, lcd
lcd.init()
lcd.clear(0xFF)
while (True):
image = sensor.snapshot()
lcd.write_image(image)