Serial Wombat Arduino Library
Loading...
Searching...
No Matches
SerialWombatMatrixKeypad.h
Go to the documentation of this file.
1#pragma once
2
3/*
4Copyright 2021-2025 Broadwell Consulting Inc.
5
6"Serial Wombat" is a registered trademark of Broadwell Consulting Inc. in
7the United States. See SerialWombat.com for usage guidance.
8
9Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15
16The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
26*/
27
28#include "Stream.h"
29#include "SerialWombat.h"
86
88 public Stream
89{
90public:
95 SerialWombatMatrixKeypad(SerialWombatChip& serialWombat):_sw(serialWombat)
96 {
97 _sw = serialWombat;
98 }
99
114 int16_t begin(uint8_t controlPin,
115 uint8_t row0pin, uint8_t row1pin, uint8_t row2pin, uint8_t row3pin,
116 uint8_t column0pin, uint8_t column1pin, uint8_t column2pin, uint8_t column3pin,
117 uint8_t bufferMode = 0, uint8_t queueMode = 1, uint8_t rowTiming = 5)
118 {
119 _pin = controlPin;
120
121 uint8_t tx[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE0,
122 _pin,
123 (uint8_t)PIN_MODE_MATRIX_KEYPAD ,
124 row0pin,
125 row1pin,
126 row2pin,
127 row3pin,
128 column0pin };
129 int16_t result = _sw.sendPacket(tx);
130 if (result < 0)
131 {
132 return result;
133 }
134
135 uint8_t tx5[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE5,
136 _pin,
137 (uint8_t)PIN_MODE_MATRIX_KEYPAD ,
138 column1pin,
139 column2pin,
140 column3pin,
141 bufferMode,
142 queueMode };
143 result = _sw.sendPacket(tx5);
144 if (result < 0)
145 {
146 return result;
147 }
148 uint8_t tx8[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE8,
149 _pin,
150 (uint8_t)PIN_MODE_MATRIX_KEYPAD ,
151rowTiming,
1520x55,
1530x55,
1540x55,
1550x55
156 };
157 return _sw.sendPacket(tx8);
158 }
159
160
174 int16_t writeQueueMask(uint16_t mask)
175 {
176 uint8_t tx[8] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE7,
178 SW_LE16(mask),0x55,0x55,0x55 };
179 return _sw.sendPacket(tx);
180 }
181
198 int16_t writeAsciiTable(uint8_t tableIndex, uint8_t asciiValue )
199 {
200 uint8_t tx[8] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE9,
202 tableIndex,asciiValue,0x55,0x55,0x55};
203 return _sw.sendPacket(tx);
204 }
205
210 {
211 uint8_t tx[8] = { 201, _pin, (uint8_t)PIN_MODE_MATRIX_KEYPAD, 0,0x55,0x55,0x55,0x55 };
212 uint8_t rx[8];
213 _sw.sendPacket(tx, rx);
214 return (rx[4]);
215 }
216
221 int read()
222 {
223 uint8_t tx[8] = { 202, _pin,(uint8_t)PIN_MODE_MATRIX_KEYPAD, 1,0x55,0x55,0x55,0x55 };
224 uint8_t rx[8];
225 if (_sw.sendPacket(tx, rx) < 0)
226 {
227 return -1;
228 }
229
230 if (rx[3] != 0)
231 {
232 return (rx[4]);
233 }
234 else
235 {
236 return (-1);
237 }
238 }
239
240 void flush()
241 {
242 //TODO
243 }
244
248 int peek()
249 {
250 uint8_t tx[8] = { 203, _pin,(uint8_t)PIN_MODE_MATRIX_KEYPAD,0x55,0x55,0x55,0x55,0x55 };
251 uint8_t rx[8];
252 _sw.sendPacket(tx, rx);
253 if (rx[4] > 0)
254 {
255 return (rx[5]);
256 }
257 else
258 {
259 return (-1);
260 }
261 }
262
270 size_t write(uint8_t data)
271{
272
273 return (1);
274}
275
284 size_t write(const uint8_t* buffer, size_t size)
285{
286 return(size);
287}
288
294 {
295 return(0);
296 }
297
308 size_t readBytes(char* buffer, size_t length)
309{
310 int index = 0;
311 int bytesAvailable = 0;
312 uint32_t timeoutMillis = millis() + timeout;
313 while (length > 0 && timeoutMillis > millis())
314 {
315 int bytecount = 4;
316 if (length < 4)
317 {
318 bytecount = length;
319 }
320 {
321
322 uint8_t tx[8] = { 202, _pin,(uint8_t)PIN_MODE_MATRIX_KEYPAD, (uint8_t)bytecount,0x55,0x55,0x55,0x55 };
323 uint8_t rx[8];
324 _sw.sendPacket(tx, rx);
325 bytesAvailable = rx[3];
326
327 if (bytesAvailable == 0)
328 {
329 continue;
330 }
331 else
332 {
333 timeoutMillis = millis() + timeout;
334 }
335 uint8_t bytesReturned = bytecount;
336 if (rx[3] < bytecount)
337 {
338 bytesReturned = rx[3];
339 }
340 for (int i = 0; i < bytesReturned; ++i)
341 {
342 buffer[index] = rx[i + 4];
343 ++index;
344 --bytesAvailable;
345 --length;
346
347 }
348 }
349
350 }
351 return (index);
352}
353
357 void setTimeout(long timeout_mS)
358 {
359 if (timeout_mS == 0)
360 {
361 timeout = 0x80000000;
362 }
363 else
364 {
365 timeout = timeout_mS;
366 }
367 }
368
369
377
378
380 uint8_t _pin = 255;
381protected:
382 uint32_t timeout = 1;
383};
384
385
393{
394public:
402 {
403 _keypad = kp;
404 _keyIndex = keyIndex;
405 }
406
416{
417 uint8_t tx[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE6,
418 _keypad._pin,
420 0,
421 _keyIndex,0x55,0x55,0x55 };
422 uint8_t rx[8];
423 int result = _keypad._sw.sendPacket(tx, rx);
424 if (result >= 0)
425 {
426 transitions = rx[4] + 256 * rx[5];
427
428 return (rx[3] > 0);
429 }
430 return(0);
431}
432
439{
440 uint8_t tx[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE6,
441 _keypad._pin,
443 0,
444 _keyIndex,0x55,0x55,0x55 };
445 uint8_t rx[8];
446 int result = _keypad._sw.sendPacket(tx, rx);
447 if (result >= 0)
448 {
449 transitions = rx[4] + 256 * rx[5];
450 uint16_t time = rx[6] + 256 * rx[7];
451 if (rx[3] == 0)
452 {
453 return(time);
454 }
455 }
456 return(0);
457}
458
465{
466 uint8_t tx[] = { (uint8_t)SerialWombatCommands::CONFIGURE_PIN_MODE6,
467 _keypad._pin,
469 0,
470 _keyIndex,0x55,0x55,0x55 };
471 uint8_t rx[8];
472 int result = _keypad._sw.sendPacket(tx, rx);
473 if (result >= 0)
474 {
475 transitions = rx[4] + 256 * rx[5];
476 uint16_t time = rx[6] + 256 * rx[7];
477 if (rx[3] == 1)
478 {
479 return(time);
480 }
481 }
482 return(0);
483}
484
495{
496 return digitalRead();
497}
498
499private:
501 uint8_t _keyIndex;
502};
503
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ PIN_MODE_MATRIX_KEYPAD
(15)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
uint16_t transitions
Number of transitions returned by last call to readTransitionsState()
A class for the Serial Wombat SW18AB chips which scans matrix keypads up to 4x4.
int peek()
Query the SerialWombatMatrixKeypad queue for the next avaialble byte, but don't remove it from the qu...
int16_t begin(uint8_t controlPin, uint8_t row0pin, uint8_t row1pin, uint8_t row2pin, uint8_t row3pin, uint8_t column0pin, uint8_t column1pin, uint8_t column2pin, uint8_t column3pin, uint8_t bufferMode=0, uint8_t queueMode=1, uint8_t rowTiming=5)
Initalize the SerialWombatMatrixKeypad.
SerialWombatMatrixKeypad(SerialWombatChip &serialWombat)
Constructor for the SerialWombatMatrixKeypad class.
int16_t writeAsciiTable(uint8_t tableIndex, uint8_t asciiValue)
Change the default ASCII output for each key.
int availableForWrite()
Number of bytes avaialble to write to SerialWombatMatrixKeypad queue. Returns 0.
void setTimeout(long timeout_mS)
implemented to fulfill Stream requirement.
int available()
Queries the SerialWombatMatrixKeypad for number bytes available to read.
size_t write(const uint8_t *buffer, size_t size)
Write bytes to the SerialWombatMatrixKeypad queue (Does nothing)
int16_t writeQueueMask(uint16_t mask)
Set a binary mask for which keys are added to Queue.
SerialWombatMatrixKeypad operator=(SerialWombatMatrixKeypad &kp)
used to allow reference copy. Not for user use.
void flush()
Discard all bytes from the SerialWombatMatrixKeypad queue.
int read()
Reads a byte from the SerialWombatMatrixKeypad queue.
size_t readBytes(char *buffer, size_t length)
Reads a specified number of bytes from the SerialWombatMatrixKeypad queue queue.
size_t write(uint8_t data)
Write a byte to the SerialWombatMatrixKeypad queue (Does Nothing)
uint16_t readDurationInTrueState_mS()
return the number of mS that the button has been in true state
bool readTransitionsState()
Queries the number of transistions that have occured on the button.
bool digitalRead()
Returns the state of the input.
uint16_t readDurationInFalseState_mS()
return the number of mS that the button has been in false state
SerialWombatMatrixButton(SerialWombatMatrixKeypad &kp, uint8_t keyIndex)
Instantiate a SerialWombatMatrixButton.