Search found 2 matches

by amphebee90
Mon Jan 02, 2023 12:57 pm
Forum: Linux
Topic: Picoscope 2204A continuous waveform generator using python in Raspberry Pi 4
Replies: 2
Views: 1703

Re: Picoscope 2204a continuous waveform generator using python in Raspberry Pi 4

Thanks! I tried to use the example from the streaming_mode.py and simplify it into the code below, and now I can generate the sine wave continuously non-stop. import matplotlib.pyplot as plt import numpy as np from picosdk.ps2000 import ps2000 from picosdk.functions import assert_pico2000_ok from pi...
by amphebee90
Mon Jan 02, 2023 4:12 am
Forum: Linux
Topic: Picoscope 2204A continuous waveform generator using python in Raspberry Pi 4
Replies: 2
Views: 1703

Picoscope 2204A continuous waveform generator using python in Raspberry Pi 4

Hello, I need to generate continuous (non-stop) waveform from Picoscope 2204a using python in Raspberry Pi 4. So far, I managed to generate short-time waveform using the example with the built-in generator from https://www.picotech.com/picoapps/uploads/04-making-signals.md.pdf. Here is my code from ...