134 int16_t result = _pisw.sendPacket(tx);
168 return (_pisw.sendPacket(tx));
191 int16_t result = _pisw.sendPacket(tx);
217 int16_t result = _pisw.sendPacket(tx);
246 (uint8_t)((((uint8_t) queueHighByte) << (uint8_t)1) | (uint8_t)queueLowByte)
248 int16_t result = _pisw.sendPacket(tx);
263 (uint8_t)outputValue,
267 int16_t result = _pisw.sendPacket(tx);
297 int16_t result = _pisw.sendPacket(tx);
324 int16_t result = _pisw.sendPacket(tx);
336 result = _pisw.sendPacket(tx2);
349 uint16_t negativeMaxIndex,
350 uint16_t negativeMidIndex,
351 uint16_t negativeDeadZone,
352 uint16_t positiveDeadZone,
353 uint16_t positiveMidIndex,
354 uint16_t positiveMaxIndex,
355 uint16_t midIncrement,
356 uint16_t maxIncrement,
357 uint16_t initialValue,
358 uint8_t updateFrequencyMask = 0
369 int16_t result = _pisw.sendPacket(tx);
371 if (result < 0)
return (result);
381 int16_t result = _pisw.sendPacket(tx);
383 if (result < 0)
return (result);
393 int16_t result = _pisw.sendPacket(tx);
395 if (result < 0)
return (result);
405 int16_t result = _pisw.sendPacket(tx);
407 if (result < 0)
return (result);
417 int16_t result = _pisw.sendPacket(tx);
429 int16_t result = _pisw.sendPacket(tx);
448 int16_t result = _pisw.sendPacket(tx);
466 (uint8_t)resetAfterRead,
470 int16_t result = _pisw.sendPacket(tx,rx);
475 return(rx[4] + 256*rx[5]);
491 (uint8_t)resetAfterRead,
495 int16_t result = _pisw.sendPacket(tx, rx);
500 return(rx[4] + 256 * rx[5]);
518 int16_t result = _pisw.sendPacket(tx, rx);
523 return(rx[4] + 256 * rx[5]);
539 int16_t result = _pisw.sendPacket(tx, rx);
544 return(rx[6] + 256 * rx[7]);
549 virtual uint8_t
pin() = 0;
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ CONFIGURE_PIN_INPUTPROCESS
(211)
#define SW_LE32(_a)
Convert a uint32_t to four bytes in little endian format for array initialization.
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
int16_t writeTransformScaleRange(uint16_t min, uint16_t max)
Scale incoming values to a range of 0 to 65535.
SerialWombatAbstractProcessedInput(SerialWombatChip &sw)
Constructor for the SerialWombatAbstractScaledOutput Class.
int16_t writeTransformLinearMXB(int32_t m, int32_t b)
Scale incoming values based on an mx+b linear equation.
int16_t writeFirstOrderFilteringConstant(uint16_t constant)
Set a first order filtering constant to be applied to the signal Higher is heavier filtering.
int16_t configureOutputValue(OutputValue outputValue)
Configures whether the pin's public data value is averaged, filtered, or neither.
uint16_t readMinimum(bool resetAfterRead=false)
Retreive the maximum public data output value since the last call with reset= true.
uint16_t readAverage()
Retreive the last completed averaged value.
uint16_t readFiltered()
Retreive the filtered value.
@ SCALE_RANGE
Scale the input signal to a 0-65535 value based on input high and low limits.
@ LINEAR_MXB
Scale the input signal based on a linear mx+b equation.
@ NONE
Don't transform the input signal.
int16_t configureIntegrator(uint16_t negativeMaxIndex, uint16_t negativeMidIndex, uint16_t negativeDeadZone, uint16_t positiveDeadZone, uint16_t positiveMidIndex, uint16_t positiveMaxIndex, uint16_t midIncrement, uint16_t maxIncrement, uint16_t initialValue, uint8_t updateFrequencyMask=0)
Sort incoming data into one of 5 ranges, and integrate based on linear interpolation in those ranges.
int16_t writeExcludeBelowAbove(uint16_t low, uint16_t high)
Sets input value ranges which are discarded rather than processed.
@ AVERAGE
Use an averaged signal for the pin's public data (updates less often)
@ RAW
Use the unfiltered signal for the pin's public data.
@ FIRST_ORDER_FILTERED
Use a first order filtered signal for the pin's public data.
virtual uint8_t pin()=0
Used for inheritance.
virtual uint8_t swPinModeNumber()=0
Used for ineheritance.
uint16_t readMaximum(bool resetAfterRead=false)
Retreive the minimum public data output value since the last call with reset= true.
int16_t configureQueue(SerialWombatQueue *queue, Period period, bool queueHighByte=true, bool queueLowByte=true)
Sets up the queueing feature for this pin mode. Queue must have been initialized prior to this queue.
int16_t writeAveragingNumberOfSamples(uint16_t numberOfSamples)
Set a number of samples to average for each update of the downstream signal.
int16_t writeInverted(bool inverted)
if enabled subtract the input value from 65535 before doing any other processing.
int16_t writeProcessedInputEnable(bool enabled)
Enables or disables all input processing functions If disabled, the raw input value is placed directl...
A Class representing a Queue in the User Ram area on the Serial Wombat Chip.