├── .gitignore ├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── code ├── pirCamera.py ├── pir_camera_zero.py └── pirtest.py ├── cover.png ├── en ├── images │ ├── .keep │ ├── banner.png │ ├── camera.png │ ├── pir_module.png │ └── pir_potentiometers.png ├── meta.yml ├── resources │ └── .keep ├── solutions │ └── parent_detector.py ├── step_1.md ├── step_2.md ├── step_3.md ├── step_4.md ├── step_5.md ├── step_6.md ├── step_7.md └── step_8.md ├── extras.md ├── hardware.yml ├── images ├── pir_camera_board_pi.jpg ├── pir_module.png ├── pir_potentiometers.png └── pir_wiring.png ├── learn.md ├── meta.yml ├── overview.md └── worksheet.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/README.md -------------------------------------------------------------------------------- /code/pirCamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/code/pirCamera.py -------------------------------------------------------------------------------- /code/pir_camera_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/code/pir_camera_zero.py -------------------------------------------------------------------------------- /code/pirtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/code/pirtest.py -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/cover.png -------------------------------------------------------------------------------- /en/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/images/banner.png -------------------------------------------------------------------------------- /en/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/images/camera.png -------------------------------------------------------------------------------- /en/images/pir_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/images/pir_module.png -------------------------------------------------------------------------------- /en/images/pir_potentiometers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/images/pir_potentiometers.png -------------------------------------------------------------------------------- /en/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/meta.yml -------------------------------------------------------------------------------- /en/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/solutions/parent_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/solutions/parent_detector.py -------------------------------------------------------------------------------- /en/step_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_1.md -------------------------------------------------------------------------------- /en/step_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_2.md -------------------------------------------------------------------------------- /en/step_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_3.md -------------------------------------------------------------------------------- /en/step_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_4.md -------------------------------------------------------------------------------- /en/step_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_5.md -------------------------------------------------------------------------------- /en/step_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_6.md -------------------------------------------------------------------------------- /en/step_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_7.md -------------------------------------------------------------------------------- /en/step_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/en/step_8.md -------------------------------------------------------------------------------- /extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/extras.md -------------------------------------------------------------------------------- /hardware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/hardware.yml -------------------------------------------------------------------------------- /images/pir_camera_board_pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/images/pir_camera_board_pi.jpg -------------------------------------------------------------------------------- /images/pir_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/images/pir_module.png -------------------------------------------------------------------------------- /images/pir_potentiometers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/images/pir_potentiometers.png -------------------------------------------------------------------------------- /images/pir_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/images/pir_wiring.png -------------------------------------------------------------------------------- /learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/learn.md -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- 1 | title: Parent Detector 2 | category: make 3 | -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/overview.md -------------------------------------------------------------------------------- /worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/parent-detector/HEAD/worksheet.md --------------------------------------------------------------------------------