104 int16_t
begin(uint8_t
pin, uint16_t chargeTime, uint16_t delay = 10)
111 return _sw.sendPacket(tx);
126 return makeDigital(touchLimit, noTouchLimit, 1, 0, 0, 0);
141 int16_t
makeDigital(uint16_t touchLimit, uint16_t noTouchLimit, uint16_t touchValue, uint16_t noTouchValue,
bool invert,uint16_t debounceCount)
144 int16_t result =
_sw.sendPacket(tx1);
150 _trueOutput = touchValue;
151 _falseOutput = noTouchValue;
153 result =
_sw.sendPacket(tx2);
158 uint8_t tx3[8] = { 203,
_pin,22,1, invert? (uint8_t)1: (uint8_t)0,
SW_LE16(debounceCount),0x55 };
159 result =
_sw.sendPacket(tx3);
169 uint8_t tx3[8] = { 203,
_pin,22,0, 0x55,0x55,0x55,0x55 };
170 return _sw.sendPacket(tx3);
183 uint8_t tx[8] = { 204,
_pin,22,0,0x55,0x55,0x55,0x55 };
185 if (
_sw.sendPacket(tx, rx) >= 0)
201 uint8_t tx[8] = { 204,
_pin,22,1,0x55,0x55,0x55,0x55 };
203 _sw.sendPacket(tx, rx);
212 return(256 * rx[7] + rx[6]);
225 uint8_t tx[8] = { 204,
_pin,22,1,0x55,0x55,0x55,0x55 };
227 _sw.sendPacket(tx, rx);
237 return(256 * rx[7] + rx[6]);
256 uint8_t tx[8] = { 204,
_pin,22,1,(uint8_t)resetTransitionCounts,0x55,0x55,0x55 };
258 _sw.sendPacket(tx, rx);
268 uint16_t _trueOutput = 1;
269 uint16_t _falseOutput = 1;
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ PIN_MODE_SW18AB_CAPTOUCH
(22)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
uint8_t pin()
Used for inheritance.
uint8_t swPinModeNumber()
Used for ineheritance.
bool digitalRead()
Returns the debounced state of the input.
uint16_t readDurationInTrueState_mS()
return the number of mS that the debounced input has been in true state
int16_t makeDigital(uint16_t touchLimit, uint16_t noTouchLimit, uint16_t touchValue, uint16_t noTouchValue, bool invert, uint16_t debounceCount)
Make a cap touch behave like a digital button.
int16_t makeDigital(uint16_t touchLimit, uint16_t noTouchLimit)
Make a cap touch behave like a digital button.
uint16_t readDurationInFalseState_mS()
return the number of mS that the debounced input has been in false state
SerialWombat18CapTouch(SerialWombatChip &serialWombat)
Instantiate a SerialWombat18CapTouch class on a specified Serial Wombat Chip.
bool readTransitionsState(bool resetTransitionCounts=true)
Queries the number of transistions that have occured on the debounced input.
int16_t begin(uint8_t pin, uint16_t chargeTime, uint16_t delay=10)
Initialize the SerialWombat18CapTouch instance with a given charge Time in uS.
uint16_t transitions
Number of transitions returned by last call to readTransitionsState()
SerialWombatAbstractButton()
SerialWombatAbstractProcessedInput(SerialWombatChip &sw)
Constructor for the SerialWombatAbstractScaledOutput Class.
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.