Skip to content

Commit

Permalink
update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed Nov 22, 2023
1 parent 2b90bf2 commit 19f0617
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.1.7] - 2023-11-22
- update readme.md


## [0.1.6] - 2023-09-23
- add Wire1 support for ESP32
- update readme.md


## [0.1.5] - 2022-12-30
- add pin numbers TCA_P00 -- TCA_P17
- add **uint8_t getType()** + example
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ See examples
- test all functionality
- library is written without hardware


#### Should

- investigate map INPUT_PULLUP on INPUT (pinMode ?)
Expand All @@ -138,14 +137,12 @@ See examples
- pull up resistors
- elaborate derived class


#### Could

- rethink class hierarchy
- TCA9535 has less functions so should be base class?
- valid address range?


#### Wont (unless)

- add TCA9535 error codes
Expand Down
4 changes: 2 additions & 2 deletions TCA9555.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// FILE: TCA9555.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.6
// VERSION: 0.1.7
// PURPOSE: Arduino library for I2C TCA9555 16 channel port expander
// DATE: 2021-06-09
// URL: https://github.com/RobTillaart/TCA9555
Expand Down Expand Up @@ -362,5 +362,5 @@ TCA9535::TCA9535(uint8_t address, TwoWire *wire)
}


// -- END OF FILE --
// -- END OF FILE --

4 changes: 2 additions & 2 deletions TCA9555.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//
// FILE: TCA9555.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.6
// VERSION: 0.1.7
// PURPOSE: Arduino library for I2C TCA9555 16 channel port expander
// DATE: 2021-06-09
// URL: https://github.com/RobTillaart/TCA9555
Expand All @@ -12,7 +12,7 @@
#include "Wire.h"


#define TCA9555_LIB_VERSION (F("0.1.6"))
#define TCA9555_LIB_VERSION (F("0.1.7"))

#define TCA9555_OK 0x00
#define TCA9555_PIN_ERROR 0x81
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/TCA9555.git"
},
"version": "0.1.6",
"version": "0.1.7",
"license": "MIT",
"frameworks": "*",
"platforms": "*",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TCA9555
version=0.1.6
version=0.1.7
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for I2C TCA9555 16 channel port expander - 16 IO-lines
Expand Down

0 comments on commit 19f0617

Please sign in to comment.