Hotkey triggered #oscilloscope screencapture with #scpi and #python.
https://embeddedjourneys.com/blog/scpi-oscilloscope-screen-capture/
Hotkey triggered #oscilloscope screencapture with #scpi and #python.
https://embeddedjourneys.com/blog/scpi-oscilloscope-screen-capture/
While probing a GPIO pin on my oscilloscope, I noticed it toggled between 2.4V and 3.3V. Using another reference pin, toggling at exactly the same time swinged correctly between 0V and 3.3V
I think I might have damaged a pin on my #rp2350 :( #debugging #signals #embedded #pico2
Added some oscilloscope measured waveforms to my blogpost about the hc-sr04 ultrasonic distance sensor. Trigger pulse width was off from the expected width on linux. Ultrasonic pulses clearly visual as well
Expected to create a 10us pulse in python using time.sleep() on my raspberry pi:
GPIO.output(pin_trig, GPIO.HIGH)
time.sleep(10E-6)
GPIO.output(pin_trig, GPIO.LOW)
Only to see a 95.5us pulse with my #siglent scope
Looking to turn my #Pico2 in a rudimentary #oscilloscope. Have been checking the ADC's samplerate and tried measuring an ultrasonic distance sensor's echo pulse. Not quite there yet, USB throughput is still a limiting factor.
https://embeddedjourneys.com/blog/pico-rudimentary-oscilloscope-1/