Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hww authored Oct 28, 2018
1 parent 22872ac commit 1018f69
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,16 +295,21 @@ waveform, if any, will remain on the display.

- **Single** The Single mode allows the oscilloscope to acquire one waveform each time you call ForceTrigger method, and the trigger condition is detected.

```C#
oscilloscope.trigger.ForceTrigger(); // start capturing
```


### Edge Detection

The trigger compare the channel value with trigger's level value and produces starting data acquiring depend on Edge detection mode. The picture below explain difference of Edge modes.

![Edge Detection](images/varp_oscilloscope_trigger.png)

The method **AutoSetLevel** set the trigger level is set to the vertical midpoint
between the peaks of the trigger signal.

```C#
oscilloscope.trigger.AutoSetLevel();
```

### Stopping acquiring waveform data

While acquisition is running, the waveform display is live. Stopping the acquisition freezes the display. In either
Expand All @@ -314,6 +319,11 @@ mode, the waveform display can be scaled or positioned with the vertical and hor
oscilloscope.trigger.Pause = true; // stop acquiring
oscilloscope.trigger.Pause = false; // run acquiring
```
Starts an acquisition regardless of an adequate trigger signal. This button has no effect if the acquisition is already stopped.

```C#
oscilloscope.trigger.ForceTrigger(); // start capturing
```

### Time Labels

Expand Down

0 comments on commit 1018f69

Please sign in to comment.