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

v1.3.0 for PWM waveform creation efficiency, to use `uint32_t` for dutyCycle, etc.

Compare
Choose a tag to compare
@khoih-prog khoih-prog released this 17 Apr 00:04
· 42 commits to main since this release
9d4ff6e

Releases v1.3.0

  1. Add setPWM_manual(pin, level) function for efficiency in wafeform creation using PWM. Check Duty cycle as integer rather than float #6
  2. Add example PWM_Waveform_Fast to demonstrate how to use new setPWM_manual(pin, level) function.
  3. Add setPWM_Int() function for optional uint32_t dutycycle = real_dutycycle * 1000. Check Duty cycle as integer rather than float #6
  4. Add example PWM_DynamicDutyCycle_Int to demonstrate how to use new setPWM_Int() function.
  5. Rewrite many functions to take advantage of new features.