From b9629d549663f28e880871abc1987bcb8c5f85fc Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Sun, 22 Jan 2023 15:13:54 -0500 Subject: [PATCH] v1.0.1 to add `PWM_StepperControl` example ### Releases v1.0.1 1. Add example [PWM_StepperControl](https://github.com/khoih-prog/ATtiny_PWM/tree/main/examples/PWM_StepperControl) to demo how to control Stepper Motor using PWM --- src/ATtiny_PWM.h | 9 +++++---- src/PWM_Generic_Debug.h | 3 ++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/ATtiny_PWM.h b/src/ATtiny_PWM.h index 21d6f00..c3c4443 100644 --- a/src/ATtiny_PWM.h +++ b/src/ATtiny_PWM.h @@ -7,11 +7,12 @@ Built by Khoi Hoang https://github.com/khoih-prog/ATtiny_PWM Licensed under MIT license - Version: 1.0.0 + Version: 1.0.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 08/11/2022 Initial coding for AVR ATtiny (ATtiny3217, etc.) using megaTinyCore + 1.0.1 K Hoang 22/01/2023 Add `PWM_StepperControl` example *****************************************************************************************************************************/ #pragma once @@ -144,13 +145,13 @@ /////////////////////////////////////////////////////////////////////////////// #ifndef AT_TINY_PWM_VERSION - #define AT_TINY_PWM_VERSION F("ATtiny_PWM v1.0.0") + #define AT_TINY_PWM_VERSION F("ATtiny_PWM v1.0.1") #define AT_TINY_PWM_VERSION_MAJOR 1 #define AT_TINY_PWM_VERSION_MINOR 0 - #define AT_TINY_PWM_VERSION_PATCH 0 + #define AT_TINY_PWM_VERSION_PATCH 1 - #define AT_TINY_PWM_VERSION_INT 1000000 + #define AT_TINY_PWM_VERSION_INT 1000001 #endif //////////////////////////////////////// diff --git a/src/PWM_Generic_Debug.h b/src/PWM_Generic_Debug.h index c405213..a50a03c 100644 --- a/src/PWM_Generic_Debug.h +++ b/src/PWM_Generic_Debug.h @@ -7,11 +7,12 @@ Built by Khoi Hoang https://github.com/khoih-prog/ATtiny_PWM Licensed under MIT license - Version: 1.0.0 + Version: 1.0.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 08/11/2022 Initial coding for AVR ATtiny (ATtiny3217, etc.) using megaTinyCore + 1.0.1 K Hoang 22/01/2023 Add `PWM_StepperControl` example *****************************************************************************************************************************/ #pragma once