This repository was archived by the owner on Jan 29, 2023. It is now read-only.
Releases: khoih-prog/ESP32_PWM
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
v1.3.3 to add support to new Adafruit boards such as QTPY_ESP32S2, FEATHER_ESP32S3_NOPSRAM and QTPY_ESP32S3_NOPSRAM
Latest
Releases v1.3.3
- 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
Releases v1.3.2
- Remove crashing
PIN_D24from examples happening to new ESP32 core v2.0.3
v1.3.1 to fix `DutyCycle` and `New Period` display bugs
Releases v1.3.1
- Fix
DutyCyclebug. Check float precisison of DutyCycle only sometimes working #3 - Fix
New Perioddisplay bug. Check random dropouts #4 - Update examples
v1.3.0 to add support to new ESP32_S3
Releases v1.3.0
- Add support to new ESP32_S3 (
ESP32S3_DEV, ESP32_S3_BOX, UM TINYS3, UM PROS3, UM FEATHERS3, etc.) - 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
Releases v1.2.2
- Use
floatforDutyCycleandFreq,uint32_tforperiod. - 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
Releases v1.2.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
Releases v1.2.0
- Fix
multiple-definitionslinker error. Dropsrc_cppandsrc_hdirectories - Add support to
ESP32_C3 - Add example multiFileProject to demo for multiple-file project
- Improve accuracy by using
double, instead ofuint32_tfordutycycle,period - Update examples accordingly
v1.1.1 to fix examples to not use GPIO1/TX0 for core v2.0.1+
Releases v1.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
Releases v1.1.0
- Add functions to modify PWM settings on-the-fly
- Fix bug
- 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
Releases v1.0.1
- Adding PWM end-of-duty-cycle callback function.
- Fix bug.
- Add end-of-duty-cycle callback feature to examples