mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
6 lines
119 B
Python
6 lines
119 B
Python
import sensor, imlib, lcd
|
|
lcd.init()
|
|
lcd.clear(0xFF)
|
|
while (True):
|
|
image = sensor.snapshot()
|
|
lcd.write_image(image) |