| Command | Arguments | Return Value | Operation |
|---|---|---|---|
PWM_RESET() | None | void | Resets all PWM states managed by the core. |
void setup() { PWM_RESET(); // Reset all PWM states managed by the core. } void loop() { PWM(5, 127); // 8bit duty FDPWM(6, 1000, 50.0); // 1kHz, 50% }