/* * Switch.h * * Created: Sat Jan 28 2023 15:21:20 * Author Chris */ #ifndef SWITCH_H_ #define SWITCH_H_ // ============================================================================================ // Includes #include // ============================================================================================ // Defines #define SWITCH_USE_INTERNAL_PULLUP true #define SWITCH_NO_INTERNAL_PULLUP false // ============================================================================================ // Datatypes // ============================================================================================ // Function Declarations void Switch_Init(bool use_pullup); bool Switch_Press_Occurred(void); #endif /* SWITCH_H_ */