Skip to content

Commit

Permalink
Merge pull request #49 from jonas-merkle/develop
Browse files Browse the repository at this point in the history
Documentation update
  • Loading branch information
jonas-merkle authored Oct 19, 2024
2 parents a700107 + b42db63 commit 52fcf76
Show file tree
Hide file tree
Showing 16 changed files with 229 additions and 164 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "AS5047P - Arduino Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.2.1
PROJECT_NUMBER = 2.2.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
315 changes: 190 additions & 125 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/BasicReadAngle/BasicReadAngle.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @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.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @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.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* @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.
* In addition to the angle value the error information gets displayed.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 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
Expand Down
6 changes: 3 additions & 3 deletions examples/PrintAllSettings/PrintAllSettings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file PrintAllSettings.ino
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This is a example prints out the settings of the AS5047P sensor.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 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
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AS5047P",
"version": "2.2.1",
"version": "2.2.2",
"description": "An Arduino library for the AS5047P high-resolution rotary position sensor. Supporting also the following sensor types: AS5047D, AS5147, AS5147P, AS5247",
"keywords": "arduino-library, as5047p, spi, sensor, rotary-encoder, high-resolution, rotary-position-sensor, as5x47, as5047d, as5147, as5147p, as5247, encoder, rotaty, angle, uvw, abi",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=AS5047P
version=2.2.1
version=2.2.2
author=Jonas Merkle [JJM] <jonas@jjm.one>
maintainer=Jonas Merkle [JJM] <jonas@jjm.one>
sentence=An Arduino library for the AS5047P high-resolution rotary position sensor.
Expand Down
6 changes: 3 additions & 3 deletions src/AS5047P.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This is the main source file of the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/AS5047P.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This is the main header file of the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/spi/AS5047P_SPI_Arduino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* @file AS5047P_SPI_Arduino.cpp
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This soure file contains the implementation of the Arduino SPI bus handler for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/spi/AS5047P_SPI_Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P_SPI_Arduino.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This header file contains the Arduino SPI bus handler for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/types/AS5047P_Types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P_Types.cpp
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This source file contains the implementation of the type definitions for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/types/AS5047P_Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P_Types.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This header file contains type definitions for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/util/AS5047P_Settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P_Settings.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This header file contains settings information for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down
6 changes: 3 additions & 3 deletions src/util/AS5047P_Util.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
* @file AS5047P_Util.h
* @author Jonas Merkle [JJM] (jonas@jjm.one)
* @brief This header file contains util functions for the AS5047P Library.
* @version 2.2.1
* @date 2023-07-04
* @version 2.2.2
* @date 2024-10-19
*
* @copyright Copyright (c) 2023 Jonas Merkle. This project is released under the GPL-3.0 License License.
* @copyright Copyright (c) 2024 Jonas Merkle. This project is released under the GPL-3.0 License License.
*
*/

Expand Down

0 comments on commit 52fcf76

Please sign in to comment.