- DAQ
- Simple Analog Read: Acq-IntClk.py
- Continuous Acquisition
- with nidaqmx: ContAcq-IntClk.py
- with PyRWI: gui_daq.py
- with C-Types: ContAcq-IntClk_ctypes.py
- Digital Output: DigitalOut.py
- Synchronize Input & Output tasks: sync_outIn.py
- Template Code: TODO
- GUI
- Basic GUI: gui_basic.py
- GUI with data acquistion: gui_daq.py
- SciPy & PyLab
- Very simple plot: simple_plot.py
- import scipy as sp
- import pylab as pl
- x = sp.arange(0,1,0.1)
- y = sp.sin(2*sp.pi*x)
- pl.plot(x,y)
- pl.show()
- FFT Computations: fft.py
- Implementing LTI Filters: TODO
- Very simple plot: simple_plot.py