├── .gitignore ├── SocketPlot-Test.py ├── SoftOscilloscope.py ├── __init__.py ├── readme.md ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyashb95/SoftwareOscilloscope/HEAD/.gitignore -------------------------------------------------------------------------------- /SocketPlot-Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyashb95/SoftwareOscilloscope/HEAD/SocketPlot-Test.py -------------------------------------------------------------------------------- /SoftOscilloscope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyashb95/SoftwareOscilloscope/HEAD/SoftOscilloscope.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyashb95/SoftwareOscilloscope/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyqtgraph==0.9.10 2 | PySide==1.2.4 3 | pyserial==2.7 4 | numpy==1.10.1 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyashb95/SoftwareOscilloscope/HEAD/utils.py --------------------------------------------------------------------------------