Hey :D, how can i remove the pwm jitter?
Thanks in advance :D
Use the hardware PWM pin instead of SoftPWM. Its far more efficient and does not rely on software driver.Here is an example: https://github.com/Pi4J/pi4j/blob/develop/pi4j-example/src/main/java/PwmExample.javaDepending on the model, you have at least 1 hardware PWM pin, maybe more:// All Raspberry Pi models support a hardware PWM pin on GPIO_01.// Raspberry Pi models A+, B+, 2B, 3B also support hardware PWM pins: GPIO_23, GPIO_24, GPIO_26Thanks, Robert