Descargar Imprimir esta página

Fadisel cebekit UCPIC-3 PICAXE 08M2 Guia De Inicio Rapido página 3

Publicidad

main:
if pin3=0 then noche
if pin3=1 then dia
noche:
readadc 1, w0
if w0 >115 then luminosidad_ok
if w0<105 then main
luminosidad_ok:
high 2
pause 2000
goto main
dia:
readadc 1, w0
if w0>210 then luminosidad_ok
if w0<200 then main
NOTE: Darkness = 108
NOTE: L'obscurité = 108
NOTA : Oscuridad = 108 -
PRACTICE 3
In this practice we check whether the brightness (using LDR probe) is appropriate³ but depending on the value of the
potentiometer (must be greater than 127) and the button (must be activated) .
Dans cette pratique, nous vérifions si la luminosité (en utilisant la sonde de LDR) est appropriate³ mais en fonction de la valeur du
potentiomètre (doit être supérieur à 127) et le bouton (doit être activé) .
En esta práctica comprobamos si la luminosidad (emplear sonda LDR) es adecuada³ pero dependiendo del valor del
potenciómetro (debe ser superior a 127) y del pulsador (debe estar activado) .
main:
readadc 4, b1
if b1>127 then condicion_pulsador
if b1<128 then main
condicion_pulsador:
if pin3=0 then main
if pin3=1 then comprobar_sensor
comprobar_sensor:
low 2
readadc b.1,w0
if w0>200 then valor_sensor_ok
if w0<200 then valor_sensor_no_ok
valor_sensor_ok:
high 2
valor_sensor_no_ok:
low 2
goto main
-
DAYLIGHT = 210
-
LUMIERE DU JOUR = 210
Luz dia = 210
www.cebek.com
-
sat@cebek.com
UPIC-3
3

Publicidad

loading