80 _monitoredPin = monitoredPin;
90 _debounceTime = debounceTime;
91 _safeState = safeState;
92 _compareMode = compareMode;
93 _activeState = activeState;
109 return (
_sw.readPublicData(
_pin) >= _debounceTime);
127 else if (state == LOW)
136 uint8_t _monitoredPin = 255;
138 uint8_t _debounceTime = 0;
141 uint16_t _compareValue;
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ PIN_MODE_PROTECTED_OUTPUT
(8)
@ PO_FAULT_IF_FEEDBACK_GREATER_THAN_EXPECTED
@ PO_FAULT_IF_FEEDBACK_LESS_THAN_EXPECTED
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.
uint8_t pin()
Returns the current SW pin number. Used primarily for virtual calls by derived classes.
void begin(uint8_t pin, uint8_t monitoredPin)
void configure(PO_COMPARE_t compareMode, uint16_t compareValue, uint8_t debounceTime, SerialWombatPinState_t activeState, SerialWombatPinState_t safeState)
void digitalWrite(uint8_t state)
Turn off the protection features and make the protected pin an unprotected output.
void makeInput()
Turn off protection features and make the protected pin an input.
bool isInSafeState()
Queries the Serial Wombat to see if the protected output has entered safe mode due to a fault.
SerialWombatProtectedOutput(SerialWombatChip &serialWombat)
Constructor for SerialWombatProtectedOutput.