├── .gitignore ├── Decode_GUI.py ├── IMU_GUI.py ├── LICENSE ├── README.md ├── ShowTrace.py └── img ├── Decode_GUI.png ├── Decode_GUI_PLOT.png ├── IMU_device.jpg ├── QIMU.png ├── README.md ├── data_plot.png └── overview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/.gitignore -------------------------------------------------------------------------------- /Decode_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/Decode_GUI.py -------------------------------------------------------------------------------- /IMU_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/IMU_GUI.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/README.md -------------------------------------------------------------------------------- /ShowTrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/ShowTrace.py -------------------------------------------------------------------------------- /img/Decode_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/Decode_GUI.png -------------------------------------------------------------------------------- /img/Decode_GUI_PLOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/Decode_GUI_PLOT.png -------------------------------------------------------------------------------- /img/IMU_device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/IMU_device.jpg -------------------------------------------------------------------------------- /img/QIMU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/QIMU.png -------------------------------------------------------------------------------- /img/README.md: -------------------------------------------------------------------------------- 1 | # img folder for README.MD 2 | -------------------------------------------------------------------------------- /img/data_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/data_plot.png -------------------------------------------------------------------------------- /img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechan0731/GY-91_and_PiCamera_RaspberryPi/HEAD/img/overview.png --------------------------------------------------------------------------------