Serial Wombat Arduino Library
|
A Class which outputs pulses of a duration stored in a queue. More...
#include <SerialWombatQueuedPulseOutput.h>
Public Member Functions | |
SerialWombatQueuedPulseOutput (SerialWombatChip &sw) | |
Class constructor for SerialWombatQueuedPulseOutput pin mode. | |
int16_t | begin (uint8_t pin, bool initialState=0, bool idleState=0, bool unitsMs=0, uint16_t QueueIndex=0xFFFF) |
Initialize a queued pulse output mode /. | |
int16_t | queuePulses (uint16_t firstPulse, uint16_t secondPulse=0) |
Add a pulse or two pulses to the queue /. | |
int16_t | pause (bool paused) |
Pause or unpause the generation of new pulses /. | |
![]() | |
SerialWombatPin (SerialWombatChip &serialWombatChip) | |
Instantiates a Serial Wombat Pin. | |
SerialWombatPin (SerialWombatChip &serialWombatChip, uint8_t pin) | |
Instantiates a Serial Wombat Pin. | |
uint16_t | readPublicData () |
Read the 16 Bit public data associated with this 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. | |
void | digitalWrite (uint8_t val) |
Set output pin High or Low. | |
int | digitalRead () |
Reads the state of the Pin. | |
uint16_t | writePublicData (uint16_t value) |
Write a 16 bit value to this pin. | |
uint8_t | pin () |
Returns the current SW pin number. Used primarily for virtual calls by derived classes. | |
uint8_t | swPinModeNumber () |
Returns the Mode number. Used primarily by derived classes to populate packet data. | |
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=0x55, uint8_t param1=0x55, uint8_t param2=0x55, uint8_t param3=0x55) |
int16_t | initPacketNoResponse (uint8_t packetNumber, uint16_t param0, uint16_t param1, uint8_t param2=0x55) |
int16_t | disable () |
Disables the pin mode (if applicable) | |
int16_t | enablePullup (bool enabled) |
Enables the weak pull up on a pin. Implemented on SW18AB only. | |
int16_t | enablePullDown (bool enabled) |
Enables the weak pull down on a pin. Implemented on SW18AB only. | |
int16_t | enableOpenDrain (bool enabled) |
Enables open drain mode on a pin. Implemented on SW18AB only. | |
Additional Inherited Members | |
![]() | |
uint8_t | _pin = 255 |
SerialWombatChip & | _sw |
uint8_t | _pinMode = 0 |
A Class which outputs pulses of a duration stored in a queue.
This class is useful for outputting a number of queued pulses of the same or different lengths. For instance, this mode can be used to output arbitrary square waveforms such as the demodulated signal used for an IR remote control.
It is also useful for precise pulsing of motors, LEDs, heaters pumps, relays or solenoids.
It could potentially also be used for UART style communication at non standard baud rates.
A video Tutorial on this pin mode is available:
//TODO - Video coming soon
TODO https://youtu.be/
Definition at line 58 of file SerialWombatQueuedPulseOutput.h.
|
inline |
Class constructor for SerialWombatQueuedPulseOutput pin mode.
serialWombat | The Serial Wombat chip on which the SerialWombatQueuedPulseOutput pin mode will run |
Definition at line 65 of file SerialWombatQueuedPulseOutput.h.
|
inline |
Initialize a queued pulse output mode /.
/
pin | The pin used to output the queued output mode / |
initialState | 0 to initialize low, or 1 to initialize high / |
idleState | 0 to go low when queue empty, 1 to go high when queue empty / |
unitsMs | 0 to use uS as pulse time, 1 to use mS as pulse time / |
QueueIndex | if set to a value other than 0xFFFF use a previously created queue in User RAM rather than the small buffer in the pin's state machine memory / |
Definition at line 76 of file SerialWombatQueuedPulseOutput.h.
|
inline |
Pause or unpause the generation of new pulses /.
/
paused | Whether the generation of pulses is paused or unpaused / |
Definition at line 117 of file SerialWombatQueuedPulseOutput.h.
|
inline |
Add a pulse or two pulses to the queue /.
/
firstPulse | A number from 1 to 32767 logical ored with 0x8000 or 0x0000 to indicate a high or low pulse of a given duration (controlled by units in begin command). 0 indicates do nothing. / |
secondPulse | A number from 1 to 32767 logical ored with 0x8000 or 0x0000 to indicate a high or low pulse of a given duration (controlled by units in begin command). 0 indicates do nothing. / |
Definition at line 89 of file SerialWombatQueuedPulseOutput.h.