├── .gitignore ├── ADXL345-Monitor.png ├── ADXL345_Transmitter └── ADXL345_Transmitter.ino ├── Invite de commandes.lnk ├── LICENSE ├── README.md ├── clean.bat ├── com_monitor.py ├── globals.py ├── live_monitor.py └── sender_sim.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /ADXL345-Monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/ADXL345-Monitor.png -------------------------------------------------------------------------------- /ADXL345_Transmitter/ADXL345_Transmitter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/ADXL345_Transmitter/ADXL345_Transmitter.ino -------------------------------------------------------------------------------- /Invite de commandes.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/Invite de commandes.lnk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/README.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/clean.bat -------------------------------------------------------------------------------- /com_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/com_monitor.py -------------------------------------------------------------------------------- /globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/globals.py -------------------------------------------------------------------------------- /live_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/live_monitor.py -------------------------------------------------------------------------------- /sender_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mba7/SerialPort-RealTime-Data-Plotter/HEAD/sender_sim.py --------------------------------------------------------------------------------