foco con fotoresitencia
en este programa veremos como usar los puertos de la raspberry para le lactura de datos asi como para general una señal, en concreto mediante un pequeño circuito con una fotoresistencias pondremos en pantalla los cambios de luz que presencia la fotoresitencia from turtle import* import RPi.GPIO as GPIO, time t=Turtle() screen=t.getscreen() setup(600,600,0,0) screensize(600,600) colormode(255) t.speed(0) t.penup() t.goto(-125,-30) t.pendown() t.fillcolor("gray") t.begin_fill() t.goto(-125,-70) t.goto(-75,-70) t.goto(-75,-30) t.goto(-125,-30) t.end_fill() t.penup() t.goto(-125,-70) t.pendown() t.left(-90) t.circle(25,180) t.penup() t.goto (-100,20) t.dot(120,255,255,0) GPIO.setmode(GPIO.BCM) measurement=0 val=0 t.hideturtle() def datos(): measurement=0 while (GPIO.input(4) == GPIO.LOW): measurement += 1 print(measurement) return measurement while True: GPIO.setup(4, GPIO.OUT) GPIO.output(4, GPIO.LOW) time...