Skip to content

Commit e5e0d53

Browse files
committed
update to version 1.5.2
1 parent 6c8b16d commit e5e0d53

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/arduino-checks.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
lint:
1919
name: check library format
2020
runs-on: ubuntu-latest
21-
continue-on-error: true
21+
continue-on-error: false
2222

2323
steps:
2424
- uses: actions/checkout@v2
@@ -35,7 +35,7 @@ jobs:
3535
compile-uno:
3636
name: compile uno examples
3737
runs-on: ubuntu-latest
38-
continue-on-error: true
38+
continue-on-error: false
3939

4040
steps:
4141
- uses: actions/checkout@v2
@@ -59,7 +59,7 @@ jobs:
5959
compile-esp8266:
6060
name: compile esp8266 examples
6161
runs-on: ubuntu-latest
62-
continue-on-error: true
62+
continue-on-error: false
6363

6464
steps:
6565
- uses: actions/checkout@v2

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# RotaryEncoder library
22

3+
[![Arduino Library Checks](https://github.com/mathertel/RotaryEncoder/actions/workflows/arduino-checks.yml/badge.svg)](https://github.com/mathertel/RotaryEncoder/actions/workflows/arduino-checks.yml)
4+
35
A library for the Arduino environment for using a rotary encoder as an input.
46

57
Here you can find an Arduino compatible library for using rotary encoders.
68

7-
I was searching a library for using a rotary encoder in my latest project and found a lot of information on this topic but none of the existing libraries did immediately match my expectations so I finally built my own.
9+
When I was searching a library for using a rotary encoder in my latest project and found a lot of information on this topic but none of the existing libraries did immediately match my expectations so I finally built my own.
810

911
It supports the type of rotary encoder that has a phase change on both input signals when rotating one `notch`.
1012

@@ -13,4 +15,4 @@ the coding and might be able to adjust it to your needs if you like:
1315

1416
<http://www.mathertel.de/Arduino/RotaryEncoderLibrary.aspx>
1517

16-
There are various aspects when writing a library for rotary encoders and you can also find a lot of the sources I analyzed at the bottom of this article.
18+
There are various aspects when writing a library for rotary encoders and you can also find a lot of the sources I analyzed at the bottom of the article.

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RotaryEncoder
2-
version=1.5.1
2+
version=1.5.2
33
author=Matthias Hertel
44
maintainer=Matthias Hertel, http://www.mathertel.de
55
sentence=Use a rotary encoder with quadrature pulses as an input device.

0 commit comments

Comments
 (0)