Merge branch 'main' into delay_fixup

This commit is contained in:
ivetagench
2024-05-01 12:04:21 +00:00
3 changed files with 46 additions and 7 deletions

View File

@@ -38,6 +38,24 @@ namespace sta
*/
virtual void setState(GpioPinState state) = 0;
/**
* @brief Set the GPIO pin to high.
*
*/
void setHigh();
/**
* @brief Set the GPIO pin to low.
*
*/
void setLow();
/**
* @brief Set the GPIO pin to the opposite of the current state.
*
*/
void toggle();
/**
* @brief Get pin input state.
*