-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added a Plotting example that uses TekHSI, tm_devices, and tm_data_types #69
base: master
Are you sure you want to change the base?
Conversation
added the tekshsi_SimplePlotExample Folder and the tekhsi_simplePlotExample.py file.
moved to a different folder in the repo.
Added to the readme file with TekHSI Simple Plot Example.
Added the link for python 3.12 for the tekHSI plot example in the ReadME file.
|
# import time # ONLY for code line 58 | ||
import matplotlib.pyplot as plt | ||
from tm_devices import DeviceManager # https://pypi.org/project/tm-devices/ | ||
from tm_devices.drivers import MSO4B, MSO5, MSO5B, MSO6, MSO6B # Importing Drivers for Tektronix MSO58B, https://pypi.org/project/tm-devices/ |
Check notice
Code scanning / CodeQL
Unused import Note
Import of 'MSO5' is not used.
Import of 'MSO6' is not used.
Import of 'MSO6B' is not used.
import matplotlib.pyplot as plt | ||
from tm_devices import DeviceManager # https://pypi.org/project/tm-devices/ | ||
from tm_devices.drivers import MSO4B, MSO5, MSO5B, MSO6, MSO6B # Importing Drivers for Tektronix MSO58B, https://pypi.org/project/tm-devices/ | ||
from tm_devices.drivers import DPO70K, DPO70KC, DPO70KD, DPO70KDX, DPO70KSX |
Check notice
Code scanning / CodeQL
Unused import Note
Import of 'DPO70KC' is not used.
Import of 'DPO70KD' is not used.
Import of 'DPO70KDX' is not used.
Import of 'DPO70KSX' is not used.
from tm_devices import DeviceManager # https://pypi.org/project/tm-devices/ | ||
from tm_devices.drivers import MSO4B, MSO5, MSO5B, MSO6, MSO6B # Importing Drivers for Tektronix MSO58B, https://pypi.org/project/tm-devices/ | ||
from tm_devices.drivers import DPO70K, DPO70KC, DPO70KD, DPO70KDX, DPO70KSX | ||
from tm_devices.drivers import MSO70K, MSO70KC, MSO70KDX |
Check notice
Code scanning / CodeQL
Unused import Note
Import of 'MSO70KC' is not used.
Import of 'MSO70KDX' is not used.
Hi @abruno-tek. Did you submit a CLA? The CLA Assistant indicates that one has not yet been submitted. |
Pull Request Checklist
Please review the Contribution Guidelines before submitting.
master
branch (left side).Type (Select only one)
Description
Added an example for simple Plotting using TekHSI, tm_devices, and tm_data_types.