4#include "../../board_definition.h"
constexpr uint8_t NOT_A_PIN
Definition board_definition.h:92
A class for input pin operations.
Definition digitalPin.h:14
bool isValid(void) const
Is the pin set?
Definition digitalPin.h:21
void setPinHigh(void) noexcept
Set the pin high.
Definition digitalPin.cpp:17
void setPin(uint8_t pin, uint8_t mode) noexcept
Set the input pin.
Definition digitalPin.cpp:7
void setPinLow(void) noexcept
Set the pin low.
Definition digitalPin.cpp:29
bool isPinHigh(void) const noexcept
Check if the pin is set high.
Definition digitalPin.cpp:40
bool isPinLow(void) const noexcept
Check if the pin is set low.
Definition digitalPin.h:30