Measurements are now available. To access a channels measurement, simply query the channels measurement object.
from pytektronix import MDO3024
scope = MDO3024(...)
frequency = scope.get_channel_measurement("ch1", "frequency")
One must specify the `get_channel_measurement(channel: str, measure_type: str)` with a channel in `[ch1, ch2, ch3, ch4]` and a measurement of one of the following:
- `amplitude`
- `area | carea`
- `burst`
- `cmean | mean | median | stdev`
- `crms | rms`
- `delay`
- `frequency | period | phase`
- `high | low`
- `hits`
- `min | max`
- `peakhits`
- `pedgecount | nedgecount`
- `pduty | nduty`
- `pk2pk`
- `povershoot | novershoot | tovershoot`
- `ppulsecount | npulsecount`
- `pwidth | nwidth`
- `rise | fall`
- `sigma1 | sigma2 | sigma3`
- `waveforms`