ESP8266_new_pwm icon indicating copy to clipboard operation
ESP8266_new_pwm copied to clipboard

This is a drop-in replacement for the ESP8266 SDK PWM

Results 14 ESP8266_new_pwm issues
Sort by recently updated
recently updated
newest added
trafficstars

For of all, one can not praise people, that put their code online and provide support, enough, so " Thank you so much !" I wouldn't be writing if i...

Hey Stefan, great Code! You helped me a lot with my porject :) I was wondering if it would be possibe to phase shift the PWM of 5 channels? Reason...

I'm not using the timer directly, but I have some libraries that probably depend on it (ESP8266HTTPUpdateServer, WifiManager, ...). Therefore I had to enable this in pwm.c for the library...

i have flicker at 50% pwm! if range=10000 than pwm from 4998 to 4999 ok but from 4999 to 5000 flicker :-(

Hello, First thanks for the library which I consider to be the best OSS PWM library for ESP8266 I found. I am observing soft LED flickering when using this PWM...

error: expected '=', ',', ';', or 'asm' etc before 'pwm_set_duty' by all the other functions i got the same error. What is the problem I cloned this rep and then...

Because the 1Khz pwm then period = 5000 , so I want the 10kHz pwm , and I set code as: ``` pwm_init(500,pwm_duty_init, 4, io_infos); pwm_set_duty(10,0); pwm_set_duty(500,1); pwm_set_duty(51,2); pwm_set_duty(102,3); pwm_start();`...

Hi, The logic for the SDK_PWM_PERIOD_COMPAT_MODE appears to be incorrect? #if SDK_PWM_PERIOD_COMPAT_MODE #define PWM_PERIOD_TO_TICKS(x) (x * 0.2) #define PWM_DUTY_TO_TICKS(x) (x * 5) #define PWM_MAX_DUTY (PWM_MAX_TICKS * 0.2) #define PWM_MAX_PERIOD (PWM_MAX_TICKS...

The conversion was just backwards. In COMPAT_MODE, period value of 1000 corresponds to 1kHz, while, without COMPAT_MODE, 5000 corresponds to the same period. So when SDK_PWM_PERIOD_COMPAT_MODE is set, period should...

Hi, i should want to drive a 3 wire pc fan with this library. Wich is the better way to set pwm to the 25Khz need to smooth operations of...