0.1.2 MCP23S17

This commit is contained in:
rob tillaart 2022-01-14 11:42:48 +01:00
parent 328f724f17
commit 5b08112e57
5 changed files with 8 additions and 7 deletions

View File

@ -1,7 +1,7 @@
//
// FILE: MCP23S17.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library for SPI MCP23S17 16 channel port expander
// DATE: 2021-12-30
// URL: https://github.com/RobTillaart/MCP23S17
@ -10,6 +10,7 @@
// HISTORY:
// 0.1.0 2021-12-30 initial version (a 2019 version did not make it)
// 0.1.1 2022-01-10 add 16 bit interface
// 0.1.2 2022-01-12 change the URL for library manager
#include "Arduino.h"

View File

@ -2,7 +2,7 @@
//
// FILE: MCP23S17.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library for SPI MCP23S17 16 channel port expander
// DATE: 2021-12-30
// URL: https://github.com/RobTillaart/MCP23S17
@ -12,7 +12,7 @@
#include "SPI.h"
#define MCP23S17_LIB_VERSION (F("0.1.1"))
#define MCP23S17_LIB_VERSION (F("0.1.2"))
#define MCP23S17_OK 0x00
#define MCP23S17_PIN_ERROR 0x81

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/MCP23S17.git"
},
"version": "0.1.1",
"version": "0.1.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",

View File

@ -1,5 +1,5 @@
name=MCP23S17
version=0.1.1
version=0.1.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for SPI MCP23S17 16 channel port expander 16 IO-lines

View File

@ -2,8 +2,8 @@
// FILE: unit_test_001.cpp
// AUTHOR: Rob Tillaart
// DATE: 2021-12-30
// PURPOSE: unit tests for the MCP23017
// https://github.com/RobTillaart/MCP23017_RT
// PURPOSE: unit tests for the MCP23S17
// https://github.com/RobTillaart/MCP23S17
// https://github.com/Arduino-CI/arduino_ci/blob/master/REFERENCE.md
//