Informe Laboratorio 1
Informe Laboratorio 1
Informe Laboratorio 1
Grupo: 309696_2
CODIGO ARDUINO:
//EN_3 Double LED and Button
#define Portled2 2 // Symbol gets the value2
#define Portled3 3 // and here same for 3
#define Portswhittch4 4 // PUSH BUTTON TO PORT 4 (und 5)
void setup() {
// put your setup code here, to run once:
pinMode (Portled2, OUTPUT); //Port 2 to be out-put
pinMode (Portled3, OUTPUT); //Port 3 to be out-put
pinMode (Portswhittch4, INPUT_PULLUP); //Port 4 as input with pullup resistor
}
void loop() {
// put your main code here, to run repeatedly:
if (digitalRead(Portswhittch4)== LOW){
digitalWrite(Portled2,HIGH);
digitalWrite(Portled3,LOW);
delay(1000);
digitalWrite(Portled2,LOW);
digitalWrite(Portled3,HIGH);
delay(1000);
}
}
Practica 2
CODIGO ARDUINO:
//EN_11 AD converter and NTC
// CTRL-SHIFT-M for
// serial terminal
// tht means ctrl and SHIFT and M
// must be pressed together !
El kit arduino que manejamos tiene todos los elementos necesarios para conectar
periféricos a las entradas y salidas del micro controlador para que funcione
estableciendo comunicación con un computador para su correcta configuración.
LISTA DE REFERENCIAS
Massimo Banzi, Michael Shiloh ; Getting Started with Arduino: The Open Source
Electronics Prototyping Platform