Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define PIN_LED 13
- #define CONFIG_LED pinMode(PIN_LED, OUTPUT)
- #define ENCENDER_LED digitalWrite(PIN_LED, HIGH)
- #define APAGAR_LED digitalWrite(PIN_LED, LOW)
- #define MS_ESPERA_LED 1000
- //#define MS_APAGADO 100
- //#define MS_ENCENDIDO 3000
- #define PIN_BOTON 8
- #define CONFIG_BOTON pinMode(PIN_BOTON, INPUT)
- #define BOTON_PRESIONADO (digitalRead(PIN_BOTON)==HIGH)
- void setup() {
- CONFIG_LED;
- // CONFIG_BOTON;
- }
- void loop() {
- //Quiero invertir el estado del led, cada cierto tiempo (MS_ESPERA_LED)
- // Blink_Opcion1();
- Blink_Opcion2();
- }
- void Blink_Opcion1(void)
- {
- static unsigned long millis_ini=0;
- static bool estado_led=0; //Se podría declarar bool
- //OPCION 1
- //Si la diferencia de tiempo, entre el actual y el de referencia,
- //es menor al esperado... no hacer nada (irse)
- //sino EJECUTAR LA ACCIÓN
- //ESPERA POR EL EVENTO
- if( (millis() - millis_ini) < MS_ESPERA_LED ) return; //Sale
- millis_ini=millis();
- //ACCIÓN
- estado_led = !estado_led;
- if(estado_led) ENCENDER_LED;
- else APAGAR_LED;
- }
- void Blink_Opcion2(void)
- {
- //OPCION 2
- //Si la diferencia de tiempo, entre el actual y el de referencia,
- //es mayor al esperado.... EJECUTAR LA ACCIÓN
- static unsigned long millis_ini=0;
- static bool estado_led=0; //Se podría declarar bool
- //ESPERA POR EL EVENTO
- if( (millis() - millis_ini) > MS_ESPERA_LED )
- {
- millis_ini=millis();
- //ACCIÓN
- estado_led = !estado_led;
- if(estado_led) ENCENDER_LED;
- else APAGAR_LED;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement