├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── cover.png ├── extras.md ├── guides ├── air_quality.md ├── ambient_temperature.md ├── barometric_pressure.md ├── images │ ├── adc_msop10.png │ ├── air_board.png │ ├── air_quality_sensor.png │ ├── anemometer.png │ ├── anemometer_magnet.png │ ├── anemometer_reed.png │ ├── bare_sensor.jpg │ ├── pressure_sensor.png │ ├── rain_gauge.jpg │ ├── rain_gauge_open.jpg │ ├── reed_switch.jpg │ ├── relative_humidity_equation.png │ ├── soil_temp_sensor.png │ ├── wind_connect.jpg │ ├── wind_vane.png │ ├── wind_vane_magnet.png │ ├── wind_vane_reed.png │ ├── wind_vane_schematic.png │ └── xbone_pad.png ├── rain_gauge.md ├── relative_humidity.md ├── soil_temperature.md ├── wind_gust_speed.md ├── wind_speed.md └── wind_vane.md ├── hardware.md ├── hardware.yml ├── ks3.md ├── learn.md ├── lesson-1 ├── code │ ├── rainfall_interrupt.py │ └── rainfall_poll.py ├── images │ ├── rain_gauge.jpg │ ├── rain_gauge_both.jpg │ ├── rain_gauge_open.jpg │ ├── reed_switch.jpg │ └── terminal.png ├── lesson.md └── worksheet.md ├── lesson-2 ├── code │ ├── wind_calc.py │ ├── wind_final.py │ └── wind_interrupt.py ├── images │ ├── anemometer.png │ ├── anemometer_magnet.png │ ├── anemometer_reed.png │ ├── anemometer_with_magnet.png │ ├── gpio-setup.png │ ├── pi_diagram.png │ └── terminal.png ├── lesson.md └── worksheet.md ├── lesson-3 ├── code │ └── wind_gust.py ├── images │ ├── anemometer.png │ ├── anemometer_magnet.png │ ├── anemometer_reed.png │ ├── anemometer_with_magnet.png │ ├── gpio-setup.png │ ├── pi_diagram.png │ └── terminal.png ├── lesson.md └── worksheet.md ├── lesson-4 ├── code │ └── find_wind_direction.py ├── images │ ├── adc_msop10.png │ ├── terminal.png │ ├── turtle.png │ ├── wind_connect.jpg │ ├── wind_vane.png │ ├── wind_vane_degrees.png │ ├── wind_vane_magnet.png │ ├── wind_vane_reed.png │ ├── wind_vane_schematic.png │ ├── wind_vane_shaded.png │ └── xbone_pad.png ├── lesson.md └── worksheet.md ├── lesson-5 ├── code │ ├── soil_fancy_graph.py │ ├── soil_multi_readings.py │ └── soil_temp.py ├── images │ ├── bare_sensor.jpg │ ├── error_matplotlib.png │ ├── graph_example.png │ ├── soil_temp_sensor.png │ └── terminal.png ├── lesson.md └── worksheet.md ├── lesson-6 ├── code │ └── two_temperature_sensors.py ├── images │ ├── air_board.png │ ├── main_board.png │ ├── relative_humidity_equation.png │ └── temperature_graph.png ├── lesson.md └── worksheet.md ├── lesson-7 ├── code │ ├── calculate_dewpoint.py │ └── calculate_dewpoint_message.py ├── images │ ├── air_board.png │ └── relative_humidity_equation.png ├── lesson.md └── worksheet.md ├── lesson-8 ├── code │ └── tweeting_weather_station.py ├── images │ └── air_quality_sensor.png ├── lesson.md └── worksheet.md ├── lesson-9 ├── code │ ├── bmp_over_time.py │ ├── bmp_over_time_part_finished.py │ └── bmp_readings.csv ├── images │ └── pressure_sensor.png ├── lesson.md └── worksheet.md ├── meta.yml ├── old ├── guides │ ├── GPIO │ │ ├── README.md │ │ ├── breadboard.md │ │ ├── connect-led.md │ │ ├── connect-leds.md │ │ ├── connect-pir.md │ │ ├── connecting-button.md │ │ ├── gpio-plus-and-pi2.md │ │ ├── images │ │ │ ├── Scratch-interface.png │ │ │ ├── a-and-b-gpio-numbers.png │ │ │ ├── a-and-b-physical-pin-numbers.png │ │ │ ├── breadboard.png │ │ │ ├── finished-circuit.png │ │ │ ├── gpio-complete-circuit.png │ │ │ ├── gpio-connect-button.png │ │ │ ├── gpio-connect-ground-mini.png │ │ │ ├── gpio-connect-ground.png │ │ │ ├── gpio-connect-red-led.png │ │ │ ├── gpio-connect-resistor.png │ │ │ ├── gpio-led-pi2.png │ │ │ ├── gpio-led.png │ │ │ ├── gpio-numbers-pi2.png │ │ │ ├── gpio-pins-pi2.jpg │ │ │ ├── gpio-pins.jpg │ │ │ ├── led-wired.png │ │ │ ├── led.png │ │ │ ├── physical-pin-numbers.png │ │ │ ├── pin11off.png │ │ │ ├── pin11on.png │ │ │ ├── pir_module.png │ │ │ ├── pir_potentiometers.png │ │ │ ├── pir_wiring.png │ │ │ ├── pull_down.png │ │ │ ├── pull_down_wire.png │ │ │ ├── pull_up.png │ │ │ ├── pull_up_wire.png │ │ │ ├── resistor-330r.png │ │ │ ├── scratch-icon.png │ │ │ ├── sensing-blocks.png │ │ │ ├── simple-circuit.png │ │ │ └── terminal-icon.png │ │ ├── led.md │ │ ├── pin-numbering.md │ │ ├── pir.md │ │ ├── pull_up_down.md │ │ ├── resistor.md │ │ ├── test-led-python.md │ │ ├── test-led-scratch.md │ │ ├── test-pir-python.md │ │ ├── test-pir-scratch.md │ │ └── wiring_diagrams.md │ ├── prototype.md │ └── weather_station │ │ ├── README.md │ │ ├── air.md │ │ ├── ambient_temp.md │ │ ├── anemometer.md │ │ ├── assemble.md │ │ ├── building.md │ │ ├── humidity.md │ │ ├── images │ │ ├── anemometer.png │ │ ├── anemometer_magnet.png │ │ ├── anemometer_reed.png │ │ ├── anemometer_with_magnet.png │ │ ├── rain_gauge.jpg │ │ ├── rain_gauge_open.jpg │ │ ├── reed_switch.jpg │ │ ├── wind_vane.png │ │ ├── wind_vane_magnet.png │ │ ├── wind_vane_reed.png │ │ ├── wind_vane_schematic.png │ │ └── xbone_pad.png │ │ ├── locating.md │ │ ├── oracle.md │ │ ├── oracle_setup.md │ │ ├── preparation.md │ │ ├── preperation.md │ │ ├── prototype.md │ │ ├── rain_gauge.md │ │ ├── siting.md │ │ ├── software.md │ │ ├── software_setup.md │ │ ├── stevenson.md │ │ ├── temp.md │ │ └── wind_vane.md ├── lesson-1 │ ├── files │ │ ├── WeatherStationCardsort.pdf │ │ └── weather_log.pdf │ ├── images │ │ ├── air-quality-sensor.png │ │ ├── anemometer.png │ │ ├── ani_model.gif │ │ ├── camera.png │ │ ├── gpio_in.png │ │ ├── gpio_out.png │ │ ├── high_low.png │ │ ├── led.png │ │ ├── morse-key.png │ │ ├── motor.png │ │ ├── piglow.png │ │ ├── pir.png │ │ ├── raspberrypis.png │ │ ├── reed.png │ │ ├── servo.png │ │ ├── tactile-push-button.png │ │ └── weather_log.png │ ├── lesson.md │ └── worksheet.md ├── lesson-2 │ ├── code │ │ ├── pulldown.py │ │ └── pullup.py │ ├── images │ │ ├── gpio-setup.png │ │ ├── jumpers.jpg │ │ ├── lxterminal.png │ │ ├── pull_down.png │ │ ├── pull_down_wire.png │ │ ├── pull_up.png │ │ └── pull_up_wire.png │ ├── lesson.md │ └── worksheet.md ├── lesson-3 │ ├── code │ │ ├── rain_interrupt.py │ │ └── rain_polling.py │ ├── images │ │ ├── gpio-setup.png │ │ ├── lxterminal.png │ │ ├── rain_gauge_both.jpg │ │ ├── rain_guage.jpg │ │ ├── rain_guage_open.jpg │ │ └── reed_switch.jpg │ ├── lesson.md │ └── worksheet.md ├── lesson-4 │ ├── code │ │ ├── wind_calc.py │ │ ├── wind_final.py │ │ └── wind_interrupt.py │ ├── images │ │ ├── anemometer.png │ │ ├── anemometer_magnet.png │ │ ├── anemometer_reed.png │ │ ├── anemometer_with_magnet.png │ │ ├── gpio-setup.png │ │ ├── lxterminal.png │ │ └── pi_diagram.png │ ├── lesson.md │ └── worksheet.md ├── lesson-5 │ ├── code │ │ └── wind_rain.py │ ├── images │ │ ├── adc_msop10.png │ │ ├── wind_vane.png │ │ ├── wind_vane_magnet.png │ │ ├── wind_vane_reed.png │ │ ├── wind_vane_schematic.png │ │ └── xbone_pad.png │ ├── lesson.md │ └── worksheet.md └── notes.txt ├── overview.md └── template ├── about.md ├── lesson.md └── worksheet.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/README.md -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/cover.png -------------------------------------------------------------------------------- /extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/extras.md -------------------------------------------------------------------------------- /guides/air_quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/air_quality.md -------------------------------------------------------------------------------- /guides/ambient_temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/ambient_temperature.md -------------------------------------------------------------------------------- /guides/barometric_pressure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/barometric_pressure.md -------------------------------------------------------------------------------- /guides/images/adc_msop10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/adc_msop10.png -------------------------------------------------------------------------------- /guides/images/air_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/air_board.png -------------------------------------------------------------------------------- /guides/images/air_quality_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/air_quality_sensor.png -------------------------------------------------------------------------------- /guides/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/anemometer.png -------------------------------------------------------------------------------- /guides/images/anemometer_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/anemometer_magnet.png -------------------------------------------------------------------------------- /guides/images/anemometer_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/anemometer_reed.png -------------------------------------------------------------------------------- /guides/images/bare_sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/bare_sensor.jpg -------------------------------------------------------------------------------- /guides/images/pressure_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/pressure_sensor.png -------------------------------------------------------------------------------- /guides/images/rain_gauge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/rain_gauge.jpg -------------------------------------------------------------------------------- /guides/images/rain_gauge_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/rain_gauge_open.jpg -------------------------------------------------------------------------------- /guides/images/reed_switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/reed_switch.jpg -------------------------------------------------------------------------------- /guides/images/relative_humidity_equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/relative_humidity_equation.png -------------------------------------------------------------------------------- /guides/images/soil_temp_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/soil_temp_sensor.png -------------------------------------------------------------------------------- /guides/images/wind_connect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/wind_connect.jpg -------------------------------------------------------------------------------- /guides/images/wind_vane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/wind_vane.png -------------------------------------------------------------------------------- /guides/images/wind_vane_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/wind_vane_magnet.png -------------------------------------------------------------------------------- /guides/images/wind_vane_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/wind_vane_reed.png -------------------------------------------------------------------------------- /guides/images/wind_vane_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/wind_vane_schematic.png -------------------------------------------------------------------------------- /guides/images/xbone_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/images/xbone_pad.png -------------------------------------------------------------------------------- /guides/rain_gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/rain_gauge.md -------------------------------------------------------------------------------- /guides/relative_humidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/relative_humidity.md -------------------------------------------------------------------------------- /guides/soil_temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/soil_temperature.md -------------------------------------------------------------------------------- /guides/wind_gust_speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/wind_gust_speed.md -------------------------------------------------------------------------------- /guides/wind_speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/wind_speed.md -------------------------------------------------------------------------------- /guides/wind_vane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/guides/wind_vane.md -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/hardware.md -------------------------------------------------------------------------------- /hardware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/hardware.yml -------------------------------------------------------------------------------- /ks3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/ks3.md -------------------------------------------------------------------------------- /learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/learn.md -------------------------------------------------------------------------------- /lesson-1/code/rainfall_interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/code/rainfall_interrupt.py -------------------------------------------------------------------------------- /lesson-1/code/rainfall_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/code/rainfall_poll.py -------------------------------------------------------------------------------- /lesson-1/images/rain_gauge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/images/rain_gauge.jpg -------------------------------------------------------------------------------- /lesson-1/images/rain_gauge_both.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/images/rain_gauge_both.jpg -------------------------------------------------------------------------------- /lesson-1/images/rain_gauge_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/images/rain_gauge_open.jpg -------------------------------------------------------------------------------- /lesson-1/images/reed_switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/images/reed_switch.jpg -------------------------------------------------------------------------------- /lesson-1/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/images/terminal.png -------------------------------------------------------------------------------- /lesson-1/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/lesson.md -------------------------------------------------------------------------------- /lesson-1/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-1/worksheet.md -------------------------------------------------------------------------------- /lesson-2/code/wind_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/code/wind_calc.py -------------------------------------------------------------------------------- /lesson-2/code/wind_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/code/wind_final.py -------------------------------------------------------------------------------- /lesson-2/code/wind_interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/code/wind_interrupt.py -------------------------------------------------------------------------------- /lesson-2/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/anemometer.png -------------------------------------------------------------------------------- /lesson-2/images/anemometer_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/anemometer_magnet.png -------------------------------------------------------------------------------- /lesson-2/images/anemometer_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/anemometer_reed.png -------------------------------------------------------------------------------- /lesson-2/images/anemometer_with_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/anemometer_with_magnet.png -------------------------------------------------------------------------------- /lesson-2/images/gpio-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/gpio-setup.png -------------------------------------------------------------------------------- /lesson-2/images/pi_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/pi_diagram.png -------------------------------------------------------------------------------- /lesson-2/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/images/terminal.png -------------------------------------------------------------------------------- /lesson-2/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/lesson.md -------------------------------------------------------------------------------- /lesson-2/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-2/worksheet.md -------------------------------------------------------------------------------- /lesson-3/code/wind_gust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/code/wind_gust.py -------------------------------------------------------------------------------- /lesson-3/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/anemometer.png -------------------------------------------------------------------------------- /lesson-3/images/anemometer_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/anemometer_magnet.png -------------------------------------------------------------------------------- /lesson-3/images/anemometer_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/anemometer_reed.png -------------------------------------------------------------------------------- /lesson-3/images/anemometer_with_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/anemometer_with_magnet.png -------------------------------------------------------------------------------- /lesson-3/images/gpio-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/gpio-setup.png -------------------------------------------------------------------------------- /lesson-3/images/pi_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/pi_diagram.png -------------------------------------------------------------------------------- /lesson-3/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/images/terminal.png -------------------------------------------------------------------------------- /lesson-3/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/lesson.md -------------------------------------------------------------------------------- /lesson-3/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-3/worksheet.md -------------------------------------------------------------------------------- /lesson-4/code/find_wind_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/code/find_wind_direction.py -------------------------------------------------------------------------------- /lesson-4/images/adc_msop10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/adc_msop10.png -------------------------------------------------------------------------------- /lesson-4/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/terminal.png -------------------------------------------------------------------------------- /lesson-4/images/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/turtle.png -------------------------------------------------------------------------------- /lesson-4/images/wind_connect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_connect.jpg -------------------------------------------------------------------------------- /lesson-4/images/wind_vane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane.png -------------------------------------------------------------------------------- /lesson-4/images/wind_vane_degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane_degrees.png -------------------------------------------------------------------------------- /lesson-4/images/wind_vane_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane_magnet.png -------------------------------------------------------------------------------- /lesson-4/images/wind_vane_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane_reed.png -------------------------------------------------------------------------------- /lesson-4/images/wind_vane_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane_schematic.png -------------------------------------------------------------------------------- /lesson-4/images/wind_vane_shaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/wind_vane_shaded.png -------------------------------------------------------------------------------- /lesson-4/images/xbone_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/images/xbone_pad.png -------------------------------------------------------------------------------- /lesson-4/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/lesson.md -------------------------------------------------------------------------------- /lesson-4/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-4/worksheet.md -------------------------------------------------------------------------------- /lesson-5/code/soil_fancy_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/code/soil_fancy_graph.py -------------------------------------------------------------------------------- /lesson-5/code/soil_multi_readings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/code/soil_multi_readings.py -------------------------------------------------------------------------------- /lesson-5/code/soil_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/code/soil_temp.py -------------------------------------------------------------------------------- /lesson-5/images/bare_sensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/images/bare_sensor.jpg -------------------------------------------------------------------------------- /lesson-5/images/error_matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/images/error_matplotlib.png -------------------------------------------------------------------------------- /lesson-5/images/graph_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/images/graph_example.png -------------------------------------------------------------------------------- /lesson-5/images/soil_temp_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/images/soil_temp_sensor.png -------------------------------------------------------------------------------- /lesson-5/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/images/terminal.png -------------------------------------------------------------------------------- /lesson-5/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/lesson.md -------------------------------------------------------------------------------- /lesson-5/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-5/worksheet.md -------------------------------------------------------------------------------- /lesson-6/code/two_temperature_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/code/two_temperature_sensors.py -------------------------------------------------------------------------------- /lesson-6/images/air_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/images/air_board.png -------------------------------------------------------------------------------- /lesson-6/images/main_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/images/main_board.png -------------------------------------------------------------------------------- /lesson-6/images/relative_humidity_equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/images/relative_humidity_equation.png -------------------------------------------------------------------------------- /lesson-6/images/temperature_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/images/temperature_graph.png -------------------------------------------------------------------------------- /lesson-6/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/lesson.md -------------------------------------------------------------------------------- /lesson-6/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-6/worksheet.md -------------------------------------------------------------------------------- /lesson-7/code/calculate_dewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/code/calculate_dewpoint.py -------------------------------------------------------------------------------- /lesson-7/code/calculate_dewpoint_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/code/calculate_dewpoint_message.py -------------------------------------------------------------------------------- /lesson-7/images/air_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/images/air_board.png -------------------------------------------------------------------------------- /lesson-7/images/relative_humidity_equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/images/relative_humidity_equation.png -------------------------------------------------------------------------------- /lesson-7/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/lesson.md -------------------------------------------------------------------------------- /lesson-7/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-7/worksheet.md -------------------------------------------------------------------------------- /lesson-8/code/tweeting_weather_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-8/code/tweeting_weather_station.py -------------------------------------------------------------------------------- /lesson-8/images/air_quality_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-8/images/air_quality_sensor.png -------------------------------------------------------------------------------- /lesson-8/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-8/lesson.md -------------------------------------------------------------------------------- /lesson-8/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-8/worksheet.md -------------------------------------------------------------------------------- /lesson-9/code/bmp_over_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/code/bmp_over_time.py -------------------------------------------------------------------------------- /lesson-9/code/bmp_over_time_part_finished.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/code/bmp_over_time_part_finished.py -------------------------------------------------------------------------------- /lesson-9/code/bmp_readings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/code/bmp_readings.csv -------------------------------------------------------------------------------- /lesson-9/images/pressure_sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/images/pressure_sensor.png -------------------------------------------------------------------------------- /lesson-9/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/lesson.md -------------------------------------------------------------------------------- /lesson-9/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/lesson-9/worksheet.md -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/meta.yml -------------------------------------------------------------------------------- /old/guides/GPIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/README.md -------------------------------------------------------------------------------- /old/guides/GPIO/breadboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/breadboard.md -------------------------------------------------------------------------------- /old/guides/GPIO/connect-led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/connect-led.md -------------------------------------------------------------------------------- /old/guides/GPIO/connect-leds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/connect-leds.md -------------------------------------------------------------------------------- /old/guides/GPIO/connect-pir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/connect-pir.md -------------------------------------------------------------------------------- /old/guides/GPIO/connecting-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/connecting-button.md -------------------------------------------------------------------------------- /old/guides/GPIO/gpio-plus-and-pi2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/gpio-plus-and-pi2.md -------------------------------------------------------------------------------- /old/guides/GPIO/images/Scratch-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/Scratch-interface.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/a-and-b-gpio-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/a-and-b-gpio-numbers.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/a-and-b-physical-pin-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/a-and-b-physical-pin-numbers.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/breadboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/breadboard.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/finished-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/finished-circuit.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-complete-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-complete-circuit.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-connect-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-connect-button.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-connect-ground-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-connect-ground-mini.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-connect-ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-connect-ground.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-connect-red-led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-connect-red-led.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-connect-resistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-connect-resistor.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-led-pi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-led-pi2.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-led.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-numbers-pi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-numbers-pi2.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-pins-pi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-pins-pi2.jpg -------------------------------------------------------------------------------- /old/guides/GPIO/images/gpio-pins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/gpio-pins.jpg -------------------------------------------------------------------------------- /old/guides/GPIO/images/led-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/led-wired.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/led.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/physical-pin-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/physical-pin-numbers.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pin11off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pin11off.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pin11on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pin11on.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pir_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pir_module.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pir_potentiometers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pir_potentiometers.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pir_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pir_wiring.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pull_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pull_down.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pull_down_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pull_down_wire.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pull_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pull_up.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/pull_up_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/pull_up_wire.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/resistor-330r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/resistor-330r.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/scratch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/scratch-icon.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/sensing-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/sensing-blocks.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/simple-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/simple-circuit.png -------------------------------------------------------------------------------- /old/guides/GPIO/images/terminal-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/images/terminal-icon.png -------------------------------------------------------------------------------- /old/guides/GPIO/led.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/led.md -------------------------------------------------------------------------------- /old/guides/GPIO/pin-numbering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/pin-numbering.md -------------------------------------------------------------------------------- /old/guides/GPIO/pir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/pir.md -------------------------------------------------------------------------------- /old/guides/GPIO/pull_up_down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/pull_up_down.md -------------------------------------------------------------------------------- /old/guides/GPIO/resistor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/resistor.md -------------------------------------------------------------------------------- /old/guides/GPIO/test-led-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/test-led-python.md -------------------------------------------------------------------------------- /old/guides/GPIO/test-led-scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/test-led-scratch.md -------------------------------------------------------------------------------- /old/guides/GPIO/test-pir-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/test-pir-python.md -------------------------------------------------------------------------------- /old/guides/GPIO/test-pir-scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/GPIO/test-pir-scratch.md -------------------------------------------------------------------------------- /old/guides/GPIO/wiring_diagrams.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/prototype.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/weather_station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/README.md -------------------------------------------------------------------------------- /old/guides/weather_station/air.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/air.md -------------------------------------------------------------------------------- /old/guides/weather_station/ambient_temp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/ambient_temp.md -------------------------------------------------------------------------------- /old/guides/weather_station/anemometer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/anemometer.md -------------------------------------------------------------------------------- /old/guides/weather_station/assemble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/assemble.md -------------------------------------------------------------------------------- /old/guides/weather_station/building.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/weather_station/humidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/humidity.md -------------------------------------------------------------------------------- /old/guides/weather_station/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/anemometer.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/anemometer_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/anemometer_magnet.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/anemometer_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/anemometer_reed.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/anemometer_with_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/anemometer_with_magnet.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/rain_gauge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/rain_gauge.jpg -------------------------------------------------------------------------------- /old/guides/weather_station/images/rain_gauge_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/rain_gauge_open.jpg -------------------------------------------------------------------------------- /old/guides/weather_station/images/reed_switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/reed_switch.jpg -------------------------------------------------------------------------------- /old/guides/weather_station/images/wind_vane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/wind_vane.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/wind_vane_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/wind_vane_magnet.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/wind_vane_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/wind_vane_reed.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/wind_vane_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/wind_vane_schematic.png -------------------------------------------------------------------------------- /old/guides/weather_station/images/xbone_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/images/xbone_pad.png -------------------------------------------------------------------------------- /old/guides/weather_station/locating.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/weather_station/oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/oracle.md -------------------------------------------------------------------------------- /old/guides/weather_station/oracle_setup.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/weather_station/preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/preparation.md -------------------------------------------------------------------------------- /old/guides/weather_station/preperation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/guides/weather_station/prototype.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old/guides/weather_station/rain_gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/rain_gauge.md -------------------------------------------------------------------------------- /old/guides/weather_station/siting.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/guides/weather_station/software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/software.md -------------------------------------------------------------------------------- /old/guides/weather_station/software_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/software_setup.md -------------------------------------------------------------------------------- /old/guides/weather_station/stevenson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/stevenson.md -------------------------------------------------------------------------------- /old/guides/weather_station/temp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/temp.md -------------------------------------------------------------------------------- /old/guides/weather_station/wind_vane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/guides/weather_station/wind_vane.md -------------------------------------------------------------------------------- /old/lesson-1/files/WeatherStationCardsort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/files/WeatherStationCardsort.pdf -------------------------------------------------------------------------------- /old/lesson-1/files/weather_log.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/files/weather_log.pdf -------------------------------------------------------------------------------- /old/lesson-1/images/air-quality-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/air-quality-sensor.png -------------------------------------------------------------------------------- /old/lesson-1/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/anemometer.png -------------------------------------------------------------------------------- /old/lesson-1/images/ani_model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/ani_model.gif -------------------------------------------------------------------------------- /old/lesson-1/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/camera.png -------------------------------------------------------------------------------- /old/lesson-1/images/gpio_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/gpio_in.png -------------------------------------------------------------------------------- /old/lesson-1/images/gpio_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/gpio_out.png -------------------------------------------------------------------------------- /old/lesson-1/images/high_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/high_low.png -------------------------------------------------------------------------------- /old/lesson-1/images/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/led.png -------------------------------------------------------------------------------- /old/lesson-1/images/morse-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/morse-key.png -------------------------------------------------------------------------------- /old/lesson-1/images/motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/motor.png -------------------------------------------------------------------------------- /old/lesson-1/images/piglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/piglow.png -------------------------------------------------------------------------------- /old/lesson-1/images/pir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/pir.png -------------------------------------------------------------------------------- /old/lesson-1/images/raspberrypis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/raspberrypis.png -------------------------------------------------------------------------------- /old/lesson-1/images/reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/reed.png -------------------------------------------------------------------------------- /old/lesson-1/images/servo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/servo.png -------------------------------------------------------------------------------- /old/lesson-1/images/tactile-push-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/tactile-push-button.png -------------------------------------------------------------------------------- /old/lesson-1/images/weather_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/images/weather_log.png -------------------------------------------------------------------------------- /old/lesson-1/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/lesson.md -------------------------------------------------------------------------------- /old/lesson-1/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-1/worksheet.md -------------------------------------------------------------------------------- /old/lesson-2/code/pulldown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/code/pulldown.py -------------------------------------------------------------------------------- /old/lesson-2/code/pullup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/code/pullup.py -------------------------------------------------------------------------------- /old/lesson-2/images/gpio-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/gpio-setup.png -------------------------------------------------------------------------------- /old/lesson-2/images/jumpers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/jumpers.jpg -------------------------------------------------------------------------------- /old/lesson-2/images/lxterminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/lxterminal.png -------------------------------------------------------------------------------- /old/lesson-2/images/pull_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/pull_down.png -------------------------------------------------------------------------------- /old/lesson-2/images/pull_down_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/pull_down_wire.png -------------------------------------------------------------------------------- /old/lesson-2/images/pull_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/pull_up.png -------------------------------------------------------------------------------- /old/lesson-2/images/pull_up_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/images/pull_up_wire.png -------------------------------------------------------------------------------- /old/lesson-2/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/lesson.md -------------------------------------------------------------------------------- /old/lesson-2/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-2/worksheet.md -------------------------------------------------------------------------------- /old/lesson-3/code/rain_interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/code/rain_interrupt.py -------------------------------------------------------------------------------- /old/lesson-3/code/rain_polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/code/rain_polling.py -------------------------------------------------------------------------------- /old/lesson-3/images/gpio-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/gpio-setup.png -------------------------------------------------------------------------------- /old/lesson-3/images/lxterminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/lxterminal.png -------------------------------------------------------------------------------- /old/lesson-3/images/rain_gauge_both.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/rain_gauge_both.jpg -------------------------------------------------------------------------------- /old/lesson-3/images/rain_guage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/rain_guage.jpg -------------------------------------------------------------------------------- /old/lesson-3/images/rain_guage_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/rain_guage_open.jpg -------------------------------------------------------------------------------- /old/lesson-3/images/reed_switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/images/reed_switch.jpg -------------------------------------------------------------------------------- /old/lesson-3/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/lesson.md -------------------------------------------------------------------------------- /old/lesson-3/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-3/worksheet.md -------------------------------------------------------------------------------- /old/lesson-4/code/wind_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/code/wind_calc.py -------------------------------------------------------------------------------- /old/lesson-4/code/wind_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/code/wind_final.py -------------------------------------------------------------------------------- /old/lesson-4/code/wind_interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/code/wind_interrupt.py -------------------------------------------------------------------------------- /old/lesson-4/images/anemometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/anemometer.png -------------------------------------------------------------------------------- /old/lesson-4/images/anemometer_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/anemometer_magnet.png -------------------------------------------------------------------------------- /old/lesson-4/images/anemometer_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/anemometer_reed.png -------------------------------------------------------------------------------- /old/lesson-4/images/anemometer_with_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/anemometer_with_magnet.png -------------------------------------------------------------------------------- /old/lesson-4/images/gpio-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/gpio-setup.png -------------------------------------------------------------------------------- /old/lesson-4/images/lxterminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/lxterminal.png -------------------------------------------------------------------------------- /old/lesson-4/images/pi_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/images/pi_diagram.png -------------------------------------------------------------------------------- /old/lesson-4/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/lesson.md -------------------------------------------------------------------------------- /old/lesson-4/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-4/worksheet.md -------------------------------------------------------------------------------- /old/lesson-5/code/wind_rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/code/wind_rain.py -------------------------------------------------------------------------------- /old/lesson-5/images/adc_msop10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/adc_msop10.png -------------------------------------------------------------------------------- /old/lesson-5/images/wind_vane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/wind_vane.png -------------------------------------------------------------------------------- /old/lesson-5/images/wind_vane_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/wind_vane_magnet.png -------------------------------------------------------------------------------- /old/lesson-5/images/wind_vane_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/wind_vane_reed.png -------------------------------------------------------------------------------- /old/lesson-5/images/wind_vane_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/wind_vane_schematic.png -------------------------------------------------------------------------------- /old/lesson-5/images/xbone_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/images/xbone_pad.png -------------------------------------------------------------------------------- /old/lesson-5/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/lesson.md -------------------------------------------------------------------------------- /old/lesson-5/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/lesson-5/worksheet.md -------------------------------------------------------------------------------- /old/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/old/notes.txt -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/overview.md -------------------------------------------------------------------------------- /template/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/template/about.md -------------------------------------------------------------------------------- /template/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/template/lesson.md -------------------------------------------------------------------------------- /template/worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/sensing-the-weather/HEAD/template/worksheet.md --------------------------------------------------------------------------------