mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
.. | ||
.github/workflows | ||
examples | ||
test | ||
.arduino-ci.yml | ||
keywords.txt | ||
library.json | ||
library.properties | ||
LICENSE | ||
Multiplex.cpp | ||
Multiplex.h | ||
README.md |
Multiplex
Arduino Library implementing a stream multiplexer.
Description
Multiplex is a library in which one can add multiple Print streams.
If one prints to the multiplexer it is sent to all the streams that were added.
The maximum nr of streams to add is 4.
It is possible to disable individual streams.
Streams can be enabled or disabled by calling enable()/disable()
passing either an index (based on the order
in whicbh add
was called; 0 is first) or a pointer to the Print
object that was passed to add(Print *)
;
Interface
Constructor
- Multiplex() constructor
- void reset() resets to zero streams in the multiplexer.
Core
- size_t write(uint8_t c) workhorse of the print interface.
- bool add(Print * stream) add another print stream. Returns false if no space left.
Control
- uint8_t count() returns # streams, MAX 4 in initial release
- uint8_t size() returns size which is 4 in the current release.
- void enable(uint8_t index) enable the stream at index.
- void enableStream(Stream * stream) enable the stream.
- void disable(uint8_t index) disable the stream at index.
- void disableStream(Stream * stream) disable the stream.
- bool isEnabled(uint8_t index) checks if the stream at index is enabled.
- bool isEnabledStream(Stream * stream) checks if the stream is enabled.
Future
- set size in constructor
- add names?
- bool inMp(stream)
- add returns int index? or 0xFF for fail
- remove a stream from the multiplex ??? => complexer admin.
- increase up to 8 streams. (pack enabled flag in one byte)
Operation
See examples