Skip to content

Commit

Permalink
minor edits (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart authored Jan 6, 2024
1 parent 0668c3f commit c43e43c
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1] - 2024-01-06
- minor edits


## [0.3.0] - 2023-12-23
- Fix #14, support for Arduino ESP32 S3 - breaking change
- update readme.md
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2023 Rob Tillaart
Copyright (c) 2021-2024 Rob Tillaart

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion TCA9555.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// FILE: TCA9555.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.3.0
// VERSION: 0.3.1
// PURPOSE: Arduino library for I2C TCA9555 16 channel port expander
// DATE: 2021-06-09
// URL: https://github.com/RobTillaart/TCA9555
Expand Down
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.3.0
// VERSION: 0.3.1
// 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.3.0"))
#define TCA9555_LIB_VERSION (F("0.3.1"))

#define TCA9555_OK 0x00
#define TCA9555_PIN_ERROR 0x81
Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9535_digitalRead/TCA9535_digitalRead.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9535_digitalRead.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library
// PURPOSE: test TCA9555 library
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9535_digitalWrite/TCA9535_digitalWrite.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9535_digitalWrite.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library - TCA9535 derived class
// PURPOSE: test TCA9555 library - TCA9535 derived class
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9555_digitalRead/TCA9555_digitalRead.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9555_digitalRead.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library
// PURPOSE: test TCA9555 library
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9555_digitalWrite/TCA9555_digitalWrite.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9555_digitalWrite.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library
// PURPOSE: test TCA9555 library
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9555_getType/TCA9555_getType.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9555_getType.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library - TCA9535 derived class
// PURPOSE: test TCA9555 library - TCA9535 derived class
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


Expand Down
3 changes: 1 addition & 2 deletions examples/TCA9555_setPolarity/TCA9555_setPolarity.ino
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
//
// FILE: TCA9555_setPolarity.ino
// AUTHOR: Rob Tillaart
// PUPROSE: test TCA9555 library
// PURPOSE: test TCA9555 library
// URL: https://github.com/RobTillaart/TCA9555


#include "Wire.h"
#include "TCA9555.h"


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.3.0",
"version": "0.3.1",
"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.3.0
version=0.3.1
author=Rob Tillaart <[email protected]>
maintainer=Rob Tillaart <[email protected]>
sentence=Arduino library for I2C TCA9555 16 channel port expander - 16 IO-lines
Expand Down

0 comments on commit c43e43c

Please sign in to comment.