/*** Included libraries ***/
/*** Global variables and function definition ***/
const int azul = 10;
const int rojo = 6;
const int verde = 3;
const int button = 13;
const int potentiometer = A0;
float Luz = 0;
float ESTADO = 0;
void CAMBIO_ESTADO() {
if (ESTADO == 3) {
ESTADO = 0;
} else {
ESTADO = ESTADO + 1;
}
}
/*** Setup ***/
void setup() {
pinMode(azul, OUTPUT);
pinMode(rojo, OUTPUT);
pinMode(verde, OUTPUT);
pinMode(button, INPUT);
pinMode(potentiometer, INPUT);
}
/*** Loop ***/
void loop() {
if (digitalRead(button) == 1) {
CAMBIO_ESTADO();
delay(2000);
} else if (ESTADO == 1) {
analogWrite(3, analogRead(potentiometer));
} else if (ESTADO == 2) {
analogWrite(6, analogRead(potentiometer));
} else if (ESTADO == 3) {
analogWrite(9, analogRead(potentiometer));
}
}
miércoles, 7 de marzo de 2018
VERSIÓN 2
Suscribirse a:
Enviar comentarios (Atom)
COCHE ROBOT
GMI:17//LML:16//DMP:18 ESTE ES EL CÓDIGO BASE DEL COCHE: PROBADO ✔ ------------------------------------...
-
GMI:17//LML:16//DMP:18 ESTE ES EL CÓDIGO BASE DEL COCHE: PROBADO ✔ ------------------------------------...
-
PRÁCTICA 4 -Empezamos haciendo la programación en el BitBloq. Este sería el resultado. -Ahora copiamos el código del ...
-
/*** Included libraries ***/ /*** Global variables and function definition ***/ const int azul = 10 ; const int rojo =...
Comentarios