martes, 14 de agosto de 2018

Bitacora 14-08-18

UNIDAD EDUCATIVA PARTICULAR “POLITÉCNICO”


3do Año PAI - 10mo “A


TAREA UNIDAD 1

algoritmo

Integrante: Angel Abel Alava Gonzalez Fecha: 8/08/2018

Aqui esta la programacion que nos enseñáron hoy:

#include<Servo.h>
Servo servoPuerta;
int pinLed=2;
int pinServo=3;
int valorFotocelda=14;
void setup() {
  // put your setup code here, to run once:
pinMode(pinLed,OUTPUT)
pinMode(pinServo,OUTPUT)
pinMode(A0,INPUT)
}
void loop() {
  // put your main code here, to run repeatedl
valorFotocelda=analogRead(A0);
if(valorFotocelda>100)
{
  digitalWrite(pinLed,LOW);
  servoPuerta.write(90);
}
else
{
  digitalWrite(pinLed,HIGH);
  servoPuerta.write(180);
  }
}

No hay comentarios:

Publicar un comentario