Skip to content

Commit 4e5e918

Browse files
committed
Bump version, and documentation changes.
1 parent 58433d1 commit 4e5e918

6 files changed

Lines changed: 24 additions & 17 deletions

File tree

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
## What's New? ##
66

7+
Version 1.0.1
8+
9+
* Changes from Paul Stoffregen
10+
* Use IntervalTimer on Teensy 3.x
11+
* Use LED_BUILTIN for WLED in example
12+
713
Version 1.0.0
814

915
* Initial release
@@ -14,7 +20,7 @@ A Wiring Framework (and Arduino) Library to produce PWM signals on any arbitrary
1420

1521
It was originally designed for use controlling the brightness of LEDs, but could be modified to control servos and other low frequency PWM controlled devices as well.
1622

17-
It uses a single hardware timer (Timer 2) on the microcontroller to generate up to 20 PWM channels.
23+
It uses a single hardware timer (Timer 2 on AVR, or IntervalTimer on Teensy 3.x) on the microcontroller to generate up to 20 PWM channels.
1824

1925
----
2026

SoftPWM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
|| @type Library
3535
|| @target Atmel AVR 8 Bit
3636
||
37-
|| @version 1.0.0
37+
|| @version 1.0.1
3838
||
3939
*/
4040

SoftPWM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
|| @type Library
2929
|| @target Atmel AVR 8 Bit
3030
||
31-
|| @version 1.0.0
31+
|| @version 1.0.1
3232
||
3333
*/
3434

SoftPWM_timer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
|| @type Library support
1616
|| @target Atmel AVR 8 Bit
1717
||
18-
|| @version 1.0.0
18+
|| @version 1.0.1
1919
||
2020
*/
2121

changelog.txt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
$Id: changelog.txt 132 2012-02-14 04:15:05Z bhagman@roguerobotics.com $
2-
31
SoftPWM Library
42

5-
Version Modified By Date Comments
6-
------- ----------- -------- --------
7-
0001 B Hagman 10/03/14 Initial coding (Pi Day!)
8-
0002 B Hagman 10/03/21 License updates, minor fixes
9-
0003 B Hagman 10/04/21 Added hardset control for syncing to matrix scan lines
10-
0004 B Hagman 10/06/27 Fixed: pin 0 could not be used.
11-
0005 B Hagman 11/05/27 Added polarity, and full Wiring support.
12-
B Hagman 12/02/13 Fixed Arduino 1.0+ mess.
3+
Version Modified By Date Comments
4+
------- ------------ ---------- --------
5+
0001 B Hagman 2010-03-14 Initial coding (Pi Day!)
6+
0002 B Hagman 2010-03-21 License updates, minor fixes
7+
0003 B Hagman 2010-04-21 Added hardset control for syncing to matrix scan lines
8+
0004 B Hagman 2010-06-27 Fixed: pin 0 could not be used.
9+
0005 B Hagman 2011-05-27 Added polarity, and full Wiring support.
10+
B Hagman 2012-02-13 Fixed Arduino 1.0+ mess.
11+
1.0.0 B Hagman 2017-01-13 Initial release conforming to library standard.
12+
1.0.1 P Stoffregen 2017-08-30 Use IntervalTimer on Teensy 3.x and use LED_BUILTIN for WLED
13+

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=SoftPWM
2-
version=1.0.0
2+
version=1.0.1
33
author=Brett Hagman <bhagman@wiring.org.co>
44
maintainer=Brett Hagman <bhagman@wiring.org.co>
55
sentence=A software library to produce a 50 percent duty cycle PWM signal on arbitrary pins.<br />
6-
paragraph=A Wiring Framework (and Arduino) Library, for Atmel AVR8 bit series microcontrollers, to produce PWM signals on any arbitrary pin.<br />It was originally designed for controlling the brightness of LEDs, but could be adapted to control servos and other low frequency PWM controlled devices as well.<br />It uses a single hardware timer (Timer 2) on an Atmel AVR 8 bit microcontroller to generate up to 20 PWM channels (your mileage may vary).<br /><br />Issues or questions: <a href="https://github.com/bhagman/SoftPWM/issues">https://github.com/bhagman/SoftPWM/issues</a><br />
6+
paragraph=A Wiring Framework (and Arduino) Library, for Atmel AVR8 bit series microcontrollers and Teensy 3.x, to produce PWM signals on any arbitrary pin.<br />It was originally designed for controlling the brightness of LEDs, but could be adapted to control servos and other low frequency PWM controlled devices as well.<br />It uses a single hardware timer (Timer 2) on an Atmel AVR 8 bit microcontroller (or IntervalTimer on Teensy 3.x) to generate up to 20 PWM channels (your mileage may vary).<br /><br />Issues or questions: <a href="https://github.com/bhagman/SoftPWM/issues">https://github.com/bhagman/SoftPWM/issues</a><br />
77
category=Signal Input/Output
88
url=https://github.com/bhagman/SoftPWM
9-
architectures=avr
9+
architectures=avr,arm

0 commit comments

Comments
 (0)