Skip to content

Commit a69c873

Browse files
authored
update readme.md (#13)
1 parent cb023de commit a69c873

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88

9+
## [0.3.3] - 2023-10-31
10+
- update readme.md
11+
12+
913
## [0.3.2] - 2023-02-20
1014
- add (experimental) read16(), read24(), read32() functions.
1115
- changed return types of some functions.
@@ -15,7 +19,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1519
- update license 2023
1620
- minor edits
1721

18-
1922
## [0.3.1] - 2022-11-06
2023
- redo clock pulse
2124

FastShiftIn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: FastShiftIn.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.3.2
4+
// VERSION: 0.3.3
55
// PURPOSE: Fast ShiftIn for 74HC165 register, AVR optimized
66
// DATE: 2013-09-29
77
// URL: https://github.com/RobTillaart/FastShiftIn

FastShiftIn.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// FILE: FastShiftIn.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.3.2
5+
// VERSION: 0.3.3
66
// PURPOSE: Fast ShiftIn for 74HC165 register, AVR optimized
77
// DATE: 2013-09-29
88
// URL: https://github.com/RobTillaart/FastShiftIn
@@ -11,7 +11,7 @@
1111
#include "Arduino.h"
1212

1313

14-
#define FASTSHIFTIN_LIB_VERSION (F("0.3.2"))
14+
#define FASTSHIFTIN_LIB_VERSION (F("0.3.3"))
1515

1616

1717
class FastShiftIn

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
[![Arduino CI](https://github.com/RobTillaart/FastShiftIn/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
33
[![Arduino-lint](https://github.com/RobTillaart/FastShiftIn/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/FastShiftIn/actions/workflows/arduino-lint.yml)
44
[![JSON check](https://github.com/RobTillaart/FastShiftIn/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/FastShiftIn/actions/workflows/jsoncheck.yml)
5+
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/FastShiftIn.svg)](https://github.com/RobTillaart/FastShiftIn/issues)
6+
57
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/FastShiftIn/blob/master/LICENSE)
68
[![GitHub release](https://img.shields.io/github/release/RobTillaart/FastShiftIn.svg?maxAge=3600)](https://github.com/RobTillaart/FastShiftIn/releases)
9+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/FastShiftIn.svg)](https://registry.platformio.org/libraries/robtillaart/FastShiftIn)
710

811

912
# FastShiftIn
@@ -110,3 +113,10 @@ pull up resistors, especially if wires are exceeding 10 cm (4").
110113
#### Wont
111114

112115

116+
## Support
117+
118+
If you appreciate my libraries, you can support the development and maintenance.
119+
Improve the quality of the libraries by providing issues and Pull Requests, or
120+
donate through PayPal or GitHub sponsors.
121+
122+
Thank you,

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/FastShiftIn.git"
1717
},
18-
"version": "0.3.2",
18+
"version": "0.3.3",
1919
"license": "MIT",
20-
"frameworks": "arduino",
20+
"frameworks": "*",
2121
"platforms": "*",
2222
"headers": "FastShiftIn.h"
2323
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FastShiftIn
2-
version=0.3.2
2+
version=0.3.3
33
author=Rob Tillaart <[email protected]>
44
maintainer=Rob Tillaart <[email protected]>
55
sentence=Arduino library for (AVR) optimized shiftIn - e.g. for 74HC165

0 commit comments

Comments
 (0)