Update Cheat sheet authored by Sander Snoo's avatar Sander Snoo
...@@ -3,8 +3,6 @@ Below are the frequently used methods of pulse-lib with the most common argument ...@@ -3,8 +3,6 @@ Below are the frequently used methods of pulse-lib with the most common argument
# Configuration # Configuration
```Python ```Python
from pulse_lib import pulselib
pulse = pulselib(backend="Qblox") pulse = pulselib(backend="Qblox")
pulse.add_awg(awg) pulse.add_awg(awg)
pulse.add_digitizer(digitizer) pulse.add_digitizer(digitizer)
...@@ -88,8 +86,8 @@ segment[channel].add_marker(start, stop) ...@@ -88,8 +86,8 @@ segment[channel].add_marker(start, stop)
### Acquisition ### Acquisition
```Python ```Python
segment[channel].acquire(start, duration, m_name, threshold=threshold, segment[channel].acquire(start, duration, m_name, wait=True,
zero_on_high=True, accept_if=1) threshold=threshold, zero_on_high=True, accept_if=1)
``` ```
# Looping # Looping
... ...
......