I need a signal at the GIPO output of approximately this shape (sub-pulse per pulse) 
How can this be implemented using PWM for PI? I am trying to do this using RPIO, but its ancient GPIO clipping may not work for my Rpi 3 b +.
from RPIO import PWM servo = PWM.Servo() servo.set_servo(12, 10000) PWM.add_channel_pulse(0, 12, start=200, width=2000)
There is no signal on the contact.
I got confused about this and would like to try the built-in library for working with PWM, but I did not find the possibility of subcycles there. How else can I output this waveform from different GPIOs?
python raspberry-pi pwm
Dmitrii
source share