-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version, and documentation changes.
- Loading branch information
Showing
6 changed files
with
24 additions
and
17 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
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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
|| @type Library | ||
|| @target Atmel AVR 8 Bit | ||
|| | ||
|| @version 1.0.0 | ||
|| @version 1.0.1 | ||
|| | ||
*/ | ||
|
||
|
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
|| @type Library | ||
|| @target Atmel AVR 8 Bit | ||
|| | ||
|| @version 1.0.0 | ||
|| @version 1.0.1 | ||
|| | ||
*/ | ||
|
||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|| @type Library support | ||
|| @target Atmel AVR 8 Bit | ||
|| | ||
|| @version 1.0.0 | ||
|| @version 1.0.1 | ||
|| | ||
*/ | ||
|
||
|
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,12 +1,13 @@ | ||
$Id: changelog.txt 132 2012-02-14 04:15:05Z [email protected] $ | ||
|
||
SoftPWM Library | ||
|
||
Version Modified By Date Comments | ||
------- ----------- -------- -------- | ||
0001 B Hagman 10/03/14 Initial coding (Pi Day!) | ||
0002 B Hagman 10/03/21 License updates, minor fixes | ||
0003 B Hagman 10/04/21 Added hardset control for syncing to matrix scan lines | ||
0004 B Hagman 10/06/27 Fixed: pin 0 could not be used. | ||
0005 B Hagman 11/05/27 Added polarity, and full Wiring support. | ||
B Hagman 12/02/13 Fixed Arduino 1.0+ mess. | ||
Version Modified By Date Comments | ||
------- ------------ ---------- -------- | ||
0001 B Hagman 2010-03-14 Initial coding (Pi Day!) | ||
0002 B Hagman 2010-03-21 License updates, minor fixes | ||
0003 B Hagman 2010-04-21 Added hardset control for syncing to matrix scan lines | ||
0004 B Hagman 2010-06-27 Fixed: pin 0 could not be used. | ||
0005 B Hagman 2011-05-27 Added polarity, and full Wiring support. | ||
B Hagman 2012-02-13 Fixed Arduino 1.0+ mess. | ||
1.0.0 B Hagman 2017-01-13 Initial release conforming to library standard. | ||
1.0.1 P Stoffregen 2017-08-30 Use IntervalTimer on Teensy 3.x and use LED_BUILTIN for WLED | ||
|
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,9 +1,9 @@ | ||
name=SoftPWM | ||
version=1.0.0 | ||
version=1.0.1 | ||
author=Brett Hagman <[email protected]> | ||
maintainer=Brett Hagman <[email protected]> | ||
sentence=A software library to produce a 50 percent duty cycle PWM signal on arbitrary pins.<br /> | ||
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 /> | ||
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 /> | ||
category=Signal Input/Output | ||
url=https://github.com/bhagman/SoftPWM | ||
architectures=avr | ||
architectures=avr,arm |