Skip to content

Commit

Permalink
Merge pull request #8 from RobTillaart/develop
Browse files Browse the repository at this point in the history
fix for platformIO compatibility
  • Loading branch information
RobTillaart authored Apr 23, 2021
2 parents 13b4475 + 668b30f commit cc22f86
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions PCF8575.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// FILE: PCF8575.cpp
// AUTHOR: Rob Tillaart
// DATE: 2020-07-20
// VERSION: 0.0.3
// VERSION: 0.1.1
// PURPOSE: Arduino library for PCF8575 - 16 channel I2C IO expander
// URL: https://github.com/RobTillaart/PCF8575
//
Expand All @@ -11,7 +11,7 @@
// 0.0.2 2020-07-21 fix reverse(); refactor;
// 0.0.3 2020-07-29 fix #5 reverse() + refactor.
// 0.1.0 2021-01-03 add Arduino-CI + unit tests

// 0.1.1 2021-04-23 fix for platformIO compatibility

#include "PCF8575.h"

Expand Down
4 changes: 2 additions & 2 deletions PCF8575.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// FILE: PCF8575.h
// AUTHOR: Rob Tillaart
// DATE: 2020-07-20
// VERSION: 0.1.0
// VERSION: 0.1.1
// PURPOSE: Arduino library for PCF8575 - 16 channel I2C IO expander
// URL: https://github.com/RobTillaart/PCF8575
//
Expand All @@ -14,7 +14,7 @@
#include "Arduino.h"
#include "Wire.h"

#define PCF8575_LIB_VERSION (F("0.1.0"))
#define PCF8575_LIB_VERSION (F("0.1.1"))

#ifndef PCF8575_INITIAL_VALUE
#define PCF8575_INITIAL_VALUE 0xFFFF
Expand Down
5 changes: 3 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PCF8575",
"keywords": "I2C, PCF8575, 16 channel, IO, I/O, shift, rotate, readButton, toggle, reverse",
"keywords": "I2C, PCF8575, 16 channel, IO, shift, rotate, readButton, toggle, reverse",
"description": "Arduino library for PCF8575 - 16 channel I2C IO expander, implements shift rotate.",
"authors":
[
Expand All @@ -15,7 +15,8 @@
"type": "git",
"url": "https://github.com/RobTillaart/PCF8575.git"
},
"version":"0.1.0",
"version":"0.1.1",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=PCF8575
version=0.1.0
version=0.1.1
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for PCF8575 - 16 channel I2C IO expander
Expand Down

0 comments on commit cc22f86

Please sign in to comment.