mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.3.1 TCA9555
This commit is contained in:
parent
047d262340
commit
13ac64aaf3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
@ -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
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
||||
|
@ -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": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=TCA9555
|
||||
version=0.3.0
|
||||
version=0.3.1
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user