tamenol
tamenol
First off, thanks for this package. I open monky by `M-x monky-status`, then I press 'f' the pull the latest commits from the repo. It's all working, but how do...
### Environment (OS, Python version, PySpice version, simulator) Linux Ubuntu 16.04 Python 3.5 PySpice 1.1.4 ### Expected Behaviour Running ``` import PySpice.Logging.Logging as Logging logger = Logging.setup_logging() from PySpice.Spice.NgSpice.Shared import...
I use the following code snippet: ``` from saleae import Saleae, Trigger s = Saleae() s.set_active_channels(digital=[0], analog=[1]) s.set_sample_rate((500000000, 50000000)) s.set_digital_voltage_option(2) s.set_trigger_one_channel(digital_channel=0, trigger=Trigger.Posedge) s.set_capture_seconds(0.4) s.capture_start_and_wait_until_finished() s.get_capture_range() ``` This results in: ```...