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
# Configuration
```Python
from pulse_lib import pulselib
pulse = pulselib(backend="Qblox")
pulse.add_awg(awg)
pulse.add_digitizer(digitizer)
......@@ -88,8 +86,8 @@ segment[channel].add_marker(start, stop)
### Acquisition
```Python
segment[channel].acquire(start, duration, m_name, threshold=threshold,
zero_on_high=True, accept_if=1)
segment[channel].acquire(start, duration, m_name, wait=True,
threshold=threshold, zero_on_high=True, accept_if=1)
```
# Looping
......
......