67 return _sw.readPublicData(
_pin);
79 void pinMode(uint8_t mode,
bool pullDown =
false,
bool openDrain =
false)
81 _sw.pinMode(
_pin, mode, pullDown, openDrain);
106 return (
_sw.digitalRead(
_pin));
115 {
return _sw.writePublicData(
_pin, value); }
131 int16_t
initPacketNoResponse(uint8_t packetNumber,uint8_t param0 = 0x55, uint8_t param1 = 0x55, uint8_t param2 = 0x55, uint8_t param3 = 0x55, uint8_t param4 = 0x55)
133 uint8_t tx[] = { (uint8_t)(200 +packetNumber),
_pin,
_pinMode,param0,param1,param2,param3,param4} ;
134 return (
_sw.sendPacket(tx));
137 int16_t
initPacketNoResponse(uint8_t packetNumber,uint16_t param0 = 0x55, uint8_t param1 = 0x55, uint8_t param2 = 0x55, uint8_t param3 = 0x55 )
139 uint8_t tx[] = { (uint8_t)(200 +packetNumber),
_pin,
_pinMode,
SW_LE16(param0),param1,param2,param3} ;
140 return (
_sw.sendPacket(tx));
145 return (
_sw.sendPacket(tx));
157 0x55,0x55,0x55,0x55,0x55
159 return _sw.sendPacket(tx);
170 return (
_sw.sendPacket(tx));
180 return (
_sw.sendPacket(tx));
190 return (
_sw.sendPacket(tx));
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ CONFIGURE_PIN_MODE_DISABLE
(219)
@ COMMAND_SET_PIN_HW
(0xB8)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
int16_t enablePullup(bool enabled)
Enables the weak pull up on a pin. Implemented on SW18AB only.
int16_t initPacketNoResponse(uint8_t packetNumber, uint16_t param0=0x55, uint8_t param1=0x55, uint8_t param2=0x55, uint8_t param3=0x55)
uint16_t writePublicData(uint16_t value)
Write a 16 bit value to this pin.
int16_t enableOpenDrain(bool enabled)
Enables open drain mode on a pin. Implemented on SW18AB only.
uint8_t swPinModeNumber()
Returns the Mode number. Used primarily by derived classes to populate packet data.
int16_t enablePullDown(bool enabled)
Enables the weak pull down on a pin. Implemented on SW18AB only.
uint16_t readPublicData()
Read the 16 Bit public data associated with this pin.
void digitalWrite(uint8_t val)
Set output pin High or Low.
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.
void pinMode(uint8_t mode, bool pullDown=false, bool openDrain=false)
Set pin to INPUT or OUTPUT, with options for pull Ups and open Drain settings.
int digitalRead()
Reads the state of the Pin.
int16_t disable()
Disables the pin mode (if applicable)
SerialWombatPin(SerialWombatChip &serialWombatChip, uint8_t pin)
Instantiates a Serial Wombat Pin.
int16_t initPacketNoResponse(uint8_t packetNumber, uint8_t param0=0x55, uint8_t param1=0x55, uint8_t param2=0x55, uint8_t param3=0x55, uint8_t param4=0x55)
int16_t initPacketNoResponse(uint8_t packetNumber, uint16_t param0, uint16_t param1, uint8_t param2=0x55)
uint8_t pin()
Returns the current SW pin number. Used primarily for virtual calls by derived classes.