96 int16_t
begin(uint8_t clkPin, uint8_t dioPin, uint8_t digits,
SWTM1637Mode mode, uint8_t dataSourcePin, uint8_t brightness0to7)
109 int16_t retval =
_sw.sendPacket(tx_200);
130 int16_t
writeDigitOrder(uint8_t first, uint8_t second, uint8_t third, uint8_t fourth, uint8_t fifth, uint8_t sixth )
132 uint8_t tx_201[8] = {
142 int retval =
_sw.sendPacket(tx_201);
147 uint8_t tx_202[8] = {
157 return _sw.sendPacket(tx_202);
170 uint8_t tx_204[8] = {
180 int retval =
_sw.sendPacket(tx_204);
185 uint8_t tx_205[8] = {
195 return _sw.sendPacket(tx_205);
212 uint8_t tx_206[8] = {
216 decimalBitmapLSBleftDigit,
222 return _sw.sendPacket(tx_206);
233 uint8_t tx_203[8] = {
243 return _sw.sendPacket(tx_203);
258 int16_t
writeAnimation(uint16_t bufferIndex, uint16_t delay, uint8_t numberOfFrames, uint8_t data[][6])
260 int result =
_sw.writeUserBuffer(bufferIndex, (uint8_t*)data, numberOfFrames * 6);
266 uint8_t settings[] = {
SW_LE16(bufferIndex),
SW_LE16(delay), numberOfFrames, 0 };
279 uint8_t tx_203[8] = {
284 suppress?(uint8_t)1:(uint8_t)0,
289 return _sw.sendPacket(tx_203);
304 uint8_t tx_207[8] = {
308 blinkBitmapLSBleftDigit,
314 return _sw.sendPacket(tx_207);
339 if (
_sw.sendPacket(tx) < 0)
349 size_t write(
const uint8_t* buffer,
size_t size)
351 size_t initialSize = size;
381 size > 1 ? buffer[1] : (uint8_t)0x55,
382 size > 2 ? buffer[2] : (uint8_t)0x55,
383 size > 3 ? buffer[3] : (uint8_t)0x55,
387 return size_t(initialSize);
395 uint8_t _dioPin = 255;
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ CONFIGURE_PIN_MODE8
(208)
@ tm1637Decimal16
Get the number to display from a pin or data source and display in decimal.
@ tm1637CharArray
Display a string sent by the host.
@ tm1637RawArray
Display raw LED segments sent by the host.
@ tm1637Hex16
Get the number to display from a pin or data source and display in hex.
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.
int16_t writeBlinkBitmap(uint8_t blinkBitmapLSBleftDigit)
int16_t suppressLeadingZeros(bool suppress)
int16_t writeDigitOrder(uint8_t first, uint8_t second, uint8_t third, uint8_t fourth, uint8_t fifth, uint8_t sixth)
size_t write(uint8_t data)
int16_t writeAnimation(uint16_t bufferIndex, uint16_t delay, uint8_t numberOfFrames, uint8_t data[][6])
int16_t writeArray(uint8_t data[6])
int16_t writeBrightness(uint8_t brightness0to7)
int16_t writeDecimalBitmap(uint8_t decimalBitmapLSBleftDigit)
int16_t begin(uint8_t clkPin, uint8_t dioPin, uint8_t digits, SWTM1637Mode mode, uint8_t dataSourcePin, uint8_t brightness0to7)
Initialize an instance of the TM1637 class.
size_t write(const uint8_t *buffer, size_t size)
SerialWombatTM1637(SerialWombatChip &serialWombat)
Constructor for SerialWombatTM1637 class.
virtual int availableForWrite()