├── .gitignore ├── LICENSE ├── README.md ├── README_ES.md ├── communication.py ├── dataBase.py ├── graphs ├── graph_acceleration.py ├── graph_altitude.py ├── graph_battery.py ├── graph_free_fall.py ├── graph_gyro.py ├── graph_pressure.py ├── graph_speed.py ├── graph_temperature.py └── graph_time.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/README.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/README_ES.md -------------------------------------------------------------------------------- /communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/communication.py -------------------------------------------------------------------------------- /dataBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/dataBase.py -------------------------------------------------------------------------------- /graphs/graph_acceleration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_acceleration.py -------------------------------------------------------------------------------- /graphs/graph_altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_altitude.py -------------------------------------------------------------------------------- /graphs/graph_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_battery.py -------------------------------------------------------------------------------- /graphs/graph_free_fall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_free_fall.py -------------------------------------------------------------------------------- /graphs/graph_gyro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_gyro.py -------------------------------------------------------------------------------- /graphs/graph_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_pressure.py -------------------------------------------------------------------------------- /graphs/graph_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_speed.py -------------------------------------------------------------------------------- /graphs/graph_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_temperature.py -------------------------------------------------------------------------------- /graphs/graph_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/graphs/graph_time.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darods/CanSat-Ground-station/HEAD/requirements.txt --------------------------------------------------------------------------------