0.2.7 Multiplex

This commit is contained in:
Rob Tillaart 2023-11-13 17:43:04 +01:00
parent 67fc27db27
commit de65ad33a3
6 changed files with 27 additions and 9 deletions

View File

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.2.7] - 2023-11-13
- update readme.md
## [0.2.6] - 2023-01-19
- fix SoftwareSerial build
- update GitHub actions
@ -13,7 +17,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- minor edit unit tests
- add changelog.md again :)
## [0.2.5] - 2022-10-23
- Add flush()
- add changelog.md

View File

@ -1,7 +1,7 @@
//
// FILE: Multiplex.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.2.6
// VERSION: 0.2.7
// PURPOSE: Arduino library to multiplex streams
// DATE: 2021-01-09
// URL: https://github.com/RobTillaart/Multiplex

View File

@ -2,7 +2,7 @@
//
// FILE: Multiplex.h
// AUTHOR: Rob Tillaart
// VERSION: 0.2.6
// VERSION: 0.2.7
// PURPOSE: Arduino library to multiplex streams
// DATE: 2021-01-09
// URL: https://github.com/RobTillaart/Multiplex
@ -11,7 +11,7 @@
#include "Arduino.h"
#define MULTIPLEX_LIB_VERSION (F("0.2.6"))
#define MULTIPLEX_LIB_VERSION (F("0.2.7"))
// MAX 254 (in theory) as 0xFF is a special value

View File

@ -1,9 +1,12 @@
[![Arduino CI](https://github.com/RobTillaart/Multiplex/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
[![JSON check](https://github.com/RobTillaart/Multiplex/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/Multiplex/actions/workflows/jsoncheck.yml)
[![Arduino-lint](https://github.com/RobTillaart/Multiplex/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/Multiplex/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/Multiplex/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/Multiplex/actions/workflows/jsoncheck.yml)
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/Multiplex.svg)](https://github.com/RobTillaart/Multiplex/issues)
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/Multiplex/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/Multiplex.svg?maxAge=3600)](https://github.com/RobTillaart/Multiplex/releases)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/Multiplex.svg)](https://registry.platformio.org/libraries/robtillaart/Multiplex)
# Multiplex
@ -46,6 +49,9 @@ If you want to prevent this effect, you should use **reset()** and repopulate th
## Interface
```cpp
#include "Multiplex.h"
```
### Constructor
@ -155,6 +161,7 @@ See examples
#### Must
- improve documentation
#### Should
@ -166,7 +173,6 @@ See examples
- breaking change ==> 0.3.0
- add **removeAll()** ==> reset()
#### Could
- error handling
@ -186,3 +192,12 @@ correctly and returns 0 or less than it should.
- test to prevent circular addition of streams?
- no, is risk of the user.
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.
Thank you,

View File

@ -15,9 +15,9 @@
"type": "git",
"url": "https://github.com/RobTillaart/Multiplex"
},
"version": "0.2.6",
"version": "0.2.7",
"license": "MIT",
"frameworks": "arduino",
"frameworks": "*",
"platforms": "*",
"headers": "Multiplex.h"
}

View File

@ -1,5 +1,5 @@
name=Multiplex
version=0.2.6
version=0.2.7
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino Library implementing a stream multiplexer