-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from jonas-merkle/develop
Version 2.2.1
- Loading branch information
Showing
17 changed files
with
90 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,14 @@ jobs: | |
steps: | ||
|
||
- name: 📥📄 Clone current Library Repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.5.3 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- name: 🔧🤖 Arduino CI Build | ||
uses: Arduino-CI/[email protected] | ||
uses: Arduino-CI/[email protected] | ||
|
||
|
||
deploy: | ||
name: Deploy ⚙️🚀 | ||
|
@@ -32,7 +33,7 @@ jobs: | |
steps: | ||
|
||
- name: 📥📄 Clone current Library Repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.5.3 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
@@ -49,7 +50,7 @@ jobs: | |
uses: mattnotmitt/doxygen-action@v1 | ||
|
||
- name: 📥🌐 Clone current gh-pages barnch of the Library Repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.5.3 | ||
with: | ||
ref: 'gh-pages' | ||
path: './.gh-pages' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,10 @@ | |
* @author Jonas Merkle [JJM] ([email protected]) | ||
* @brief This is a basic example program to read the angle position from a AS5047 rotary encoder. | ||
* The angle postion gets updated and printed to the serial consol once a second. | ||
* @version 2.2.0 | ||
* @date 2022-11-20 | ||
* @version 2.2.1 | ||
* @date 2023-07-04 | ||
* | ||
* @copyright Copyright (c) 2021 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* | ||
* More Information can be found here: | ||
* https://github.com/jonas-merkle/AS5047P | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,10 @@ | |
* @author Jonas Merkle [JJM] ([email protected]) | ||
* @brief This is a basic example program to read the angle position and debug information from a AS5047 rotary encoder. | ||
* The angle postion and debug information gets updated and printed to the serial consol once a second. | ||
* @version 2.2.0 | ||
* @date 2022-11-20 | ||
* @version 2.2.1 | ||
* @date 2023-07-04 | ||
* | ||
* @copyright Copyright (c) 2021 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* | ||
* More Information can be found here: | ||
* https://github.com/jonas-merkle/AS5047P | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
* @file PrintAllSettings.ino | ||
* @author Jonas Merkle [JJM] ([email protected]) | ||
* @brief This is a example prints out the settings of the AS5047P sensor. | ||
* @version 2.2.0 | ||
* @date 2022-11-20 | ||
* @version 2.2.1 | ||
* @date 2023-07-04 | ||
* | ||
* @copyright Copyright (c) 2021 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* | ||
* More Information can be found here: | ||
* https://github.com/jonas-merkle/AS5047P | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=AS5047P | ||
version=2.2.0 | ||
version=2.2.1 | ||
author=Jonas Merkle [JJM] <[email protected]> | ||
maintainer=Jonas Merkle [JJM] <[email protected]> | ||
sentence=An Arduino library for the AS5047P high-resolution rotary position sensor. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/** | ||
* @file AS5047P.h | ||
* @author Jonas Merkle [JJM] ([email protected]) | ||
* @brief This is the main sourcefile of the AS5047P Library. | ||
* @version 2.2.0 | ||
* @date 2022-11-20 | ||
* @brief This is the main source file of the AS5047P Library. | ||
* @version 2.2.1 | ||
* @date 2023-07-04 | ||
* | ||
* @copyright Copyright (c) 2021 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License. | ||
* | ||
*/ | ||
|
||
|
Oops, something went wrong.