Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.0.1 to add PWM_StepperControl example
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
khoih-prog committed Jan 22, 2023
1 parent d9364ae commit b9629d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/ATtiny_PWM.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

////////////////////////////////////////
Expand Down
3 changes: 2 additions & 1 deletion src/PWM_Generic_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b9629d5

Please sign in to comment.