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

Releases: khoih-prog/ESP32_PWM

v1.3.3 to add support to new Adafruit boards such as QTPY_ESP32S2, FEATHER_ESP32S3_NOPSRAM and QTPY_ESP32S3_NOPSRAM

16 Jun 21:59
27f7e03
Compare
Choose a tag to compare

Releases v1.3.3

  1. Add support to new Adafruit boards such as QTPY_ESP32S2, FEATHER_ESP32S3_NOPSRAM and QTPY_ESP32S3_NOPSRAM

v1.3.2 to remove crashing `PIN_D24` from examples happening to new ESP32 core v2.0.3

09 May 15:19
a2def18
Compare
Choose a tag to compare

Releases v1.3.2

  1. Remove crashing PIN_D24 from examples happening to new ESP32 core v2.0.3

v1.3.1 to fix `DutyCycle` and `New Period` display bugs

05 Mar 03:01
aa86755
Compare
Choose a tag to compare

Releases v1.3.1

  1. Fix DutyCycle bug. Check float precisison of DutyCycle only sometimes working #3
  2. Fix New Period display bug. Check random dropouts #4
  3. Update examples

v1.3.0 to add support to new ESP32_S3

13 Feb 02:59
56a50a6
Compare
Choose a tag to compare

Releases v1.3.0

  1. Add support to new ESP32_S3 (ESP32S3_DEV, ESP32_S3_BOX, UM TINYS3, UM PROS3, UM FEATHERS3, etc.)
  2. Modify examples accordingly

v1.2.2 to use `float` for `DutyCycle` and `Freq`, `uint32_t` for `period`. and to optimize code by not calculation in ISR

02 Feb 00:12
9a12e8f
Compare
Choose a tag to compare

Releases v1.2.2

  1. Use float for DutyCycle and Freq, uint32_t for period.
  2. Optimize code by not calculation in ISR

v1.2.1 to permit DutyCycle to be optionally updated at the end current PWM period instead of immediately

30 Jan 22:11
20dff48
Compare
Choose a tag to compare

Releases v1.2.1

  1. DutyCycle to be optionally updated at the end current PWM period instead of immediately. Check DutyCycle to be updated at the end current PWM period #2

v1.2.0 to fix `multiple-definitions` linker error, to add support to ESP32_C3, and to improve accuracy

30 Jan 02:40
d068df5
Compare
Choose a tag to compare

Releases v1.2.0

  1. Fix multiple-definitions linker error. Drop src_cpp and src_h directories
  2. Add support to ESP32_C3
  3. Add example multiFileProject to demo for multiple-file project
  4. Improve accuracy by using double, instead of uint32_t for dutycycle, period
  5. Update examples accordingly

v1.1.1 to fix examples to not use GPIO1/TX0 for core v2.0.1+

09 Nov 20:22
9643d66
Compare
Choose a tag to compare

Releases v1.1.1

  1. Fix examples to not use GPIO1/TX0 for ESP32 core v2.0.1+

v1.1.0 to add functions to modify PWM settings on-the-fly

07 Nov 19:27
6d67f0e
Compare
Choose a tag to compare

Releases v1.1.0

  1. Add functions to modify PWM settings on-the-fly
  2. Fix bug
  3. Add example to demo how to modify PWM settings on-the-fly

v1.0.1 adding PWM end-of-duty-cycle callback function and fix bug

22 Sep 01:04
d5e8bd5
Compare
Choose a tag to compare

Releases v1.0.1

  1. Adding PWM end-of-duty-cycle callback function.
  2. Fix bug.
  3. Add end-of-duty-cycle callback feature to examples