Routineerklärung 31-TV-Shield -> tv.py Bildübertragung
Video-Tutorial 30 – Erweiterungskarte für kabelgebundene Bildübertragung: https://singtown.com/learn/50521/
Video-Tutorial 31 – Erweiterungskarte für drahtlose Bildübertragung: https://singtown.com/learn/50535/
import sensor, image, tv, time
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.SIF)
clock = time.clock()
tv.init(triple_buffer=False)
tv.channel(8)
while(True):
clock.tick()
tv.display(sensor.snapshot())
print(clock.fps())