From 4551720a51ec4403f9a3e374b9cf33092610233a Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Tue, 17 Oct 2023 10:27:43 +0200 Subject: [PATCH] update readme.md --- AnalogKeypad.cpp | 2 +- AnalogKeypad.h | 4 ++-- CHANGELOG.md | 7 +++++-- README.md | 13 +++++++++++++ library.json | 4 ++-- library.properties | 2 +- 6 files changed, 24 insertions(+), 8 deletions(-) diff --git a/AnalogKeypad.cpp b/AnalogKeypad.cpp index 8e114d2..ce5405f 100644 --- a/AnalogKeypad.cpp +++ b/AnalogKeypad.cpp @@ -1,7 +1,7 @@ // // FILE: AnalogKeypad.cpp // AUTHOR: Rob Tillaart -// VERSION: 0.2.3 +// VERSION: 0.2.4 // DATE: 2019-01-31 // PURPOSE: Class for (Robotdyn) 4x4 and 4x3 analog keypad diff --git a/AnalogKeypad.h b/AnalogKeypad.h index 01eab4a..fb8f72b 100644 --- a/AnalogKeypad.h +++ b/AnalogKeypad.h @@ -2,7 +2,7 @@ // // FILE: AnalogKeypad.h // AUTHOR: Rob Tillaart -// VERSION: 0.2.3 +// VERSION: 0.2.4 // DATE: 2019-01-31 // PURPOSE: Class for (Robotdyn) 4x4 and 4x3 analogue keypad // URL: https://github.com/RobTillaart/AnalogKeypad @@ -11,7 +11,7 @@ #include "Arduino.h" -#define ANALOGKEYPAD_LIB_VERSION (F("0.2.3")) +#define ANALOGKEYPAD_LIB_VERSION (F("0.2.4")) #define NOKEY 0x00 #define PRESSED 0x80 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8accd16..5d09a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Change Log analogKeypad +# Change Log AnalogKeypad All notable changes to this project will be documented in this file. @@ -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.2.4] - 2023-10-17 +- update readme.md (badges) + + ## [0.2.3] - 2023-01-21 - update GitHub actions - update license 2023 @@ -14,7 +18,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - add performance example for **read()** - minor edits - ## [0.2.2] - 2022-10-27 - Add RP2040 support to build-CI. - Add CHANGELOG.md diff --git a/README.md b/README.md index 9d4621e..6b36ba6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,11 @@ [![Arduino CI](https://github.com/RobTillaart/AnalogKeypad/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci) [![Arduino-lint](https://github.com/RobTillaart/AnalogKeypad/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/AnalogKeypad/actions/workflows/arduino-lint.yml) [![JSON check](https://github.com/RobTillaart/AnalogKeypad/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/AnalogKeypad/actions/workflows/jsoncheck.yml) +[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/AnalogKeypad.svg)](https://github.com/RobTillaart/AnalogKeypad/issues) + [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/AnalogKeypad/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/RobTillaart/AnalogKeypad.svg?maxAge=3600)](https://github.com/RobTillaart/AnalogKeypad/releases) +[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/AnalogKeypad.svg)](https://registry.platformio.org/libraries/robtillaart/AnalogKeypad) # AnalogKeypad @@ -112,7 +115,17 @@ See Examples - store in RAM, accessor functions - version for external ADC - see ADC712 +- derive class for 4x3, 4x2 and 4x1 analog keypads? #### Wont +## Support + +If you appreciate my libraries, you can support the development and maintenance. +Improve the quality of the libraries by providing issues and Pull Requests, or +donate through PayPal or GitHub sponsors. + +Thank you, + + diff --git a/library.json b/library.json index 142fd34..b1f01fd 100644 --- a/library.json +++ b/library.json @@ -15,9 +15,9 @@ "type": "git", "url": "https://github.com/RobTillaart/AnalogKeypad" }, - "version": "0.2.3", + "version": "0.2.4", "license": "MIT", - "frameworks": "arduino", + "frameworks": "*", "platforms": "*", "headers": "AnalogKeypad.h" } diff --git a/library.properties b/library.properties index 86e0987..6a78d49 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AnalogKeypad -version=0.2.3 +version=0.2.4 author=Rob Tillaart maintainer=Rob Tillaart sentence=Arduino Library for (Robotdyn) 4x4 and 4x3 AnalogKeypad