/** ****************************************************************************************
* \mainpage
*
* @brief Libreria Led e pulsanti
* https://wokwi.com/projects/386977288702563329
*
* @author Filippo Bilardo
* @date 15/01/24
* @version 1.0 15/01/24 Versione iniziale
*/
//------------------------------------------------------------------------------------------
//=== INCLUDES =============================================================================
//------------------------------------------------------------------------------------------
#include "LED.h"
#include "Pulsante.h"
//------------------------------------------------------------------------------------------
//=== CONSTANTS ============================================================================
//------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------
//=== LOCAL VARIABLES ======================================================================
//------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------
//=== SETUP ================================================================================
//------------------------------------------------------------------------------------------
void setup() {
Led_configura(); // Imposta il pin del LED come output
P_configura(); // Imposta il pin di P1 come input
}
//------------------------------------------------------------------------------------------
//=== MAIN LOOP ============================================================================
//------------------------------------------------------------------------------------------
void loop() {
//P1_pressRaw() ? Led1_accendi() : Led1_spegni();
P1_press() ? Led1_accendi() : Led1_spegni();
P2_press() ? Led2_accendi() : Led2_spegni();
//if(P2_longPress()) Led2_inverti();
//if(P2_click()) Led2_inverti();
}