├── .gitignore ├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── code ├── #Sense_Logger_v4.py# ├── .#Sense_Logger_v4.py ├── Sense_Logger_Final.py ├── Sense_Logger_v1.py ├── Sense_Logger_v2.py ├── Sense_Logger_v3.py └── Sense_Logger_v4.py ├── cover.png ├── en ├── images │ ├── .keep │ ├── banner.png │ ├── code1.png │ ├── code2.png │ ├── idle3.png │ ├── rc_local.png │ ├── run1.png │ ├── run2.png │ └── terminal.png ├── meta.yml ├── resources │ ├── .keep │ ├── Sense_Logger_Final.py │ ├── Sense_Logger_v1.py │ ├── Sense_Logger_v2.py │ ├── Sense_Logger_v3.py │ └── Sense_Logger_v4.py ├── solutions │ └── main.py ├── step_1.md ├── step_2.md ├── step_3.md ├── step_4.md ├── step_5.md ├── step_6.md └── step_7.md ├── experiment_drop.md ├── experiment_env.md ├── experiment_fridge.md ├── experiment_hab.md ├── hardware.md ├── hardware.yml ├── images ├── code1.png ├── code2.png ├── idle3.png ├── rc_local.png ├── run1.png ├── run2.png └── terminal.png ├── learn.md ├── meta.yml ├── overview.md ├── software.md ├── software.yml ├── space_data.md ├── worksheet.md └── worksheet2.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/README.md -------------------------------------------------------------------------------- /code/#Sense_Logger_v4.py#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/#Sense_Logger_v4.py# -------------------------------------------------------------------------------- /code/.#Sense_Logger_v4.py: -------------------------------------------------------------------------------- 1 | mjs@Phosphorus.2039:1505205140 -------------------------------------------------------------------------------- /code/Sense_Logger_Final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/Sense_Logger_Final.py -------------------------------------------------------------------------------- /code/Sense_Logger_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/Sense_Logger_v1.py -------------------------------------------------------------------------------- /code/Sense_Logger_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/Sense_Logger_v2.py -------------------------------------------------------------------------------- /code/Sense_Logger_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/Sense_Logger_v3.py -------------------------------------------------------------------------------- /code/Sense_Logger_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/code/Sense_Logger_v4.py -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/cover.png -------------------------------------------------------------------------------- /en/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/banner.png -------------------------------------------------------------------------------- /en/images/code1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/code1.png -------------------------------------------------------------------------------- /en/images/code2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/code2.png -------------------------------------------------------------------------------- /en/images/idle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/idle3.png -------------------------------------------------------------------------------- /en/images/rc_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/rc_local.png -------------------------------------------------------------------------------- /en/images/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/run1.png -------------------------------------------------------------------------------- /en/images/run2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/run2.png -------------------------------------------------------------------------------- /en/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/images/terminal.png -------------------------------------------------------------------------------- /en/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/meta.yml -------------------------------------------------------------------------------- /en/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/resources/Sense_Logger_Final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/resources/Sense_Logger_Final.py -------------------------------------------------------------------------------- /en/resources/Sense_Logger_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/resources/Sense_Logger_v1.py -------------------------------------------------------------------------------- /en/resources/Sense_Logger_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/resources/Sense_Logger_v2.py -------------------------------------------------------------------------------- /en/resources/Sense_Logger_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/resources/Sense_Logger_v3.py -------------------------------------------------------------------------------- /en/resources/Sense_Logger_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/resources/Sense_Logger_v4.py -------------------------------------------------------------------------------- /en/solutions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/solutions/main.py -------------------------------------------------------------------------------- /en/step_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_1.md -------------------------------------------------------------------------------- /en/step_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_2.md -------------------------------------------------------------------------------- /en/step_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_3.md -------------------------------------------------------------------------------- /en/step_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_4.md -------------------------------------------------------------------------------- /en/step_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_5.md -------------------------------------------------------------------------------- /en/step_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_6.md -------------------------------------------------------------------------------- /en/step_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/en/step_7.md -------------------------------------------------------------------------------- /experiment_drop.md: -------------------------------------------------------------------------------- 1 | Write up of dropping pi out of window 2 | -------------------------------------------------------------------------------- /experiment_env.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /experiment_fridge.md: -------------------------------------------------------------------------------- 1 | Write up of experiment placing Pi in fridge / freezer 2 | -------------------------------------------------------------------------------- /experiment_hab.md: -------------------------------------------------------------------------------- 1 | Write up of HAB flight & data 2 | -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/hardware.md -------------------------------------------------------------------------------- /hardware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/hardware.yml -------------------------------------------------------------------------------- /images/code1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/code1.png -------------------------------------------------------------------------------- /images/code2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/code2.png -------------------------------------------------------------------------------- /images/idle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/idle3.png -------------------------------------------------------------------------------- /images/rc_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/rc_local.png -------------------------------------------------------------------------------- /images/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/run1.png -------------------------------------------------------------------------------- /images/run2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/run2.png -------------------------------------------------------------------------------- /images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/images/terminal.png -------------------------------------------------------------------------------- /learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/learn.md -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- 1 | title: Sense HAT Data Logger 2 | category: make 3 | -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/overview.md -------------------------------------------------------------------------------- /software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/software.md -------------------------------------------------------------------------------- /software.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/software.yml -------------------------------------------------------------------------------- /space_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/space_data.md -------------------------------------------------------------------------------- /worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/worksheet.md -------------------------------------------------------------------------------- /worksheet2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sense-hat-data-logger/HEAD/worksheet2.md --------------------------------------------------------------------------------