├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── settings.json ├── AUTHORS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.rst ├── sets ├── boost │ ├── creative-toolbox │ │ ├── auto-builder │ │ │ ├── auto-builder.jpg │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── creative-toolbox.jpg │ │ └── index.md │ ├── droid-commander │ │ ├── droid-commander.jpg │ │ ├── index.md │ │ └── r2-d2 │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ └── r2-d2.jpg │ └── index.md ├── city │ ├── 60198-cargo-train │ │ ├── 60198-cargo-train.jpg │ │ ├── index.md │ │ ├── slope-detection │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── sensor-placement.jpg │ │ │ └── slope-detection.jpg │ │ └── speed-control │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ └── train-load.jpg │ └── index.md ├── mindstorms-ev3 │ ├── education-core │ │ ├── color_sorter │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── gyro_boy │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── puppy │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── robot_arm │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── robot_educator_basic │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── robot_educator_line │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── robot_educator_ultrasonic │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ └── sets_ev3_education_core.code-workspace │ ├── education-expansion │ │ ├── elephant │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── sets_ev3_education_expansion.code-workspace │ │ ├── stair_climber │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ ├── tank_bot │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ └── main.py │ │ └── znap │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ │ └── main.py │ ├── home-bonus │ │ ├── bobb3e │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── bobb3e.jpeg │ │ │ ├── bobb3e.py │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── dinor3x │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── dinor3x.jpeg │ │ │ ├── dinor3x.py │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── el3ctric-guitar │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── el3ctric-guitar.jpeg │ │ │ ├── el3ctric_guitar.py │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── ev3-d4 │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── ev3-d4.png │ │ │ ├── ev3_d4.py │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ └── rc_tank_util.py │ │ ├── ev3-game │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── ev3-game.jpeg │ │ │ ├── ev3_game.py │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── index.md │ │ ├── kraz3 │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ ├── kraz3.jpeg │ │ │ ├── kraz3.py │ │ │ ├── main.py │ │ │ └── rc_tank_util.py │ │ ├── mr-b3am │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── mr-b3am.png │ │ │ └── mr_b3am.py │ │ ├── rac3-truck │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── rac3-truck.jpeg │ │ │ └── rac3_truck.py │ │ ├── robodoz3r │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── rc_tank_util.py │ │ │ ├── robodoz3r.jpeg │ │ │ └── robodoz3r.py │ │ ├── sets-mindstorms-ev3-home-bonus.code-workspace │ │ └── wack3m │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── wack3m.jpg │ │ │ └── wack3m.py │ ├── home-main │ │ ├── ev3rstorm │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── ev3rstorm.jpeg │ │ │ ├── ev3rstorm.py │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ └── rc_tank_util.py │ │ ├── gripp3r │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── gripp3r.jpeg │ │ │ ├── gripp3r.py │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ └── rc_tank_util.py │ │ ├── index.md │ │ ├── mindstorms-ev3-home.jpg │ │ ├── r3ptar │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── index.md │ │ │ ├── main.py │ │ │ ├── r3ptar.jpeg │ │ │ └── r3ptar.py │ │ ├── sets_ev3_home.code-workspace │ │ ├── spik3r │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── README.md │ │ │ ├── main.py │ │ │ ├── spik3r.jpeg │ │ │ └── spik3r.py │ │ └── track3r │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ │ ├── index.md │ │ │ ├── rc_tank_util.py │ │ │ ├── track3r.jpeg │ │ │ ├── track3r_base.py │ │ │ ├── track3r_with_biblade_spinner.py │ │ │ ├── track3r_with_blasting_bazooka.py │ │ │ ├── track3r_with_gripping_claw.py │ │ │ └── track3r_with_heavy_hammer.py │ └── index.md ├── mindstorms-robot-inventor │ ├── fan-inventions │ │ ├── exploration-rover │ │ │ ├── exploration-rover.jpg │ │ │ ├── exploration-rover.pdf │ │ │ ├── index.md │ │ │ └── main.py │ │ └── index.md │ ├── index.md │ ├── main-models │ │ ├── .gitignore │ │ ├── blast │ │ │ ├── blast-basic.py │ │ │ ├── blast.jpeg │ │ │ └── index.md │ │ ├── gelo │ │ │ ├── basic.md │ │ │ ├── gelo-bone.png │ │ │ ├── gelo.jpg │ │ │ ├── gelo.py │ │ │ ├── gelo_basic.py │ │ │ ├── gelo_remote.py │ │ │ ├── gelo_repl.py │ │ │ ├── gelo_roam.py │ │ │ ├── gelo_template.py │ │ │ ├── gelo_tricks.py │ │ │ ├── index.md │ │ │ ├── remote.md │ │ │ ├── remote.png │ │ │ ├── repl.md │ │ │ ├── roam.md │ │ │ ├── template.md │ │ │ └── tricks.md │ │ ├── index.md │ │ ├── mvp │ │ │ ├── index.md │ │ │ ├── mvp-basic.py │ │ │ └── mvp.jpeg │ │ ├── robot-inventor.jpg │ │ └── tricky │ │ │ ├── index.md │ │ │ ├── tricky-basic.py │ │ │ ├── tricky-playing-soccer.py │ │ │ └── tricky.jpeg │ └── other-models │ │ ├── balancer │ │ ├── README.md │ │ └── main.py │ │ ├── block-flipper │ │ ├── block-flipper.JPG │ │ ├── block-flipper.py │ │ └── index.md │ │ ├── index.md │ │ ├── mini-loader │ │ ├── index.md │ │ ├── mini-loader.JPG │ │ └── miniLoader_RC.py │ │ ├── quick-reference │ │ ├── Quick_Ref.JPG │ │ ├── Quick_Ref.py │ │ └── index.md │ │ └── steerbot │ │ ├── index.md │ │ ├── main.py │ │ ├── steerbot-instructions.pdf │ │ └── steerbot.jpg ├── spike-prime │ ├── core-set │ │ ├── cnc_machine │ │ │ ├── README.md │ │ │ └── basic_cnc_machine.py │ │ ├── hand-controlled-grabber │ │ │ ├── hand-controlled-grabber.png │ │ │ ├── index.md │ │ │ └── main.py │ │ ├── index.md │ │ ├── kiki_dog │ │ │ ├── README.md │ │ │ └── kiki_seeing_colors.py │ │ └── spike-prime-core.jpg │ └── index.md └── technic │ ├── 42099-off-roader │ ├── 42099-off-roader.jpg │ ├── driving │ │ ├── index.md │ │ ├── main.py │ │ └── truck.jpg │ ├── index.md │ ├── keyboard-remote │ │ ├── index.md │ │ ├── keyboard-remote-truck.jpg │ │ ├── main.py │ │ ├── remote.py │ │ └── terminalwindow.png │ ├── obstacle-avoidance │ │ ├── index.md │ │ ├── main.py │ │ └── obstacle-avoidance.jpg │ └── powered-up-remote │ │ ├── index.md │ │ ├── main.py │ │ ├── off-roader-blocks-screenshot.png │ │ └── powered-up-remote-truck.jpg │ ├── 42109_top_gear_rally_car │ └── keyboard_remote │ │ ├── README.md │ │ └── main.py │ ├── 42114-volvo-articulated-hauler │ ├── 42114-volvo-articulated-hauler.jpg │ ├── index.md │ └── powered-up-remote │ │ ├── 42114_88010.jpg │ │ ├── index.md │ │ ├── main.py │ │ └── remote_description.png │ ├── 42124-off-road-buggy │ ├── 42124-off-road-buggy.jpg │ ├── index.md │ └── powered-up-remote │ │ ├── index.md │ │ ├── main.py │ │ └── powered-up-remote-buggy.jpg │ ├── 42129-mercedes-benz-zetros │ ├── 42129-mercedes-benz-zetros.jpg │ ├── index.md │ └── powered-up-remote │ │ ├── index.md │ │ ├── main.py │ │ └── powered-up-remote-lock.jpg │ ├── 42131-cat-bulldozer │ ├── 42131-cat-bulldozer.jpg │ ├── index.md │ └── powered-up-remote │ │ ├── 42131-cat-bulldozer-remote.jpg │ │ ├── index.md │ │ └── main.py │ ├── 42140-app-controlled-transformation-vehicle │ ├── 42140-app-controlled-transformation-vehicle.jpg │ ├── index.md │ └── powered-up-remote │ │ ├── index.md │ │ ├── main.py │ │ ├── main2.py │ │ └── transformation-vehicle-remote.jpg │ ├── 42160-audi-rs-q-e-tron │ ├── 42160-audi-rs-q-e-tron.webp │ ├── index.md │ ├── powered-up-remote │ │ ├── e-tron-remote.jpg │ │ ├── index.md │ │ └── main.py │ └── xbox-controller │ │ ├── audi-xbox-program.png │ │ ├── audi-xbox.jpg │ │ ├── audi_blocks.py │ │ ├── audi_python.py │ │ └── index.md │ └── index.md ├── setup.cfg ├── tutorials ├── dev │ ├── dev.png │ ├── index.md │ └── tools │ │ ├── index.md │ │ ├── linux │ │ ├── index.md │ │ └── pybricks-code-linux.png │ │ └── vscode │ │ ├── index.md │ │ └── pybricks-vscode.png ├── remix │ ├── index.md │ └── iot │ │ ├── index.md │ │ └── iot.png └── wireless │ ├── hub-to-device │ ├── drawing.svg │ ├── hub-to-device.png │ ├── hub-to-phone.png │ ├── index.md │ ├── pc-communication │ │ ├── demo.py │ │ ├── hub-to-pc.png │ │ ├── index.md │ │ └── main.py │ ├── pc-keyboard │ │ ├── hub-keyboard.png │ │ ├── index.md │ │ ├── remote.py │ │ └── terminalwindow.png │ └── wireless.png │ ├── hub-to-hub │ ├── broadcast │ │ ├── index.md │ │ ├── remote.py │ │ └── vehicle.py │ ├── hub-to-hub.png │ ├── index.md │ └── pybricks-to-official-fw │ │ ├── duplo-spike-small.jpg │ │ ├── duplo.py │ │ ├── duplotrain.mpd │ │ ├── index.md │ │ ├── instructions.pdf │ │ └── train_driver.py │ ├── index.md │ └── remote-control │ ├── button-basics │ ├── RC_Tutorial.py │ └── index.md │ ├── drive-base │ ├── RC_DriveBase.py │ ├── drive-base.JPG │ └── index.md │ ├── index.md │ └── lego-remote.jpg └── update_workspaces.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [pybricks] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/README.rst -------------------------------------------------------------------------------- /sets/boost/creative-toolbox/auto-builder/auto-builder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/creative-toolbox/auto-builder/auto-builder.jpg -------------------------------------------------------------------------------- /sets/boost/creative-toolbox/auto-builder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/creative-toolbox/auto-builder/index.md -------------------------------------------------------------------------------- /sets/boost/creative-toolbox/auto-builder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/creative-toolbox/auto-builder/main.py -------------------------------------------------------------------------------- /sets/boost/creative-toolbox/creative-toolbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/creative-toolbox/creative-toolbox.jpg -------------------------------------------------------------------------------- /sets/boost/creative-toolbox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/creative-toolbox/index.md -------------------------------------------------------------------------------- /sets/boost/droid-commander/droid-commander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/droid-commander/droid-commander.jpg -------------------------------------------------------------------------------- /sets/boost/droid-commander/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/droid-commander/index.md -------------------------------------------------------------------------------- /sets/boost/droid-commander/r2-d2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/droid-commander/r2-d2/index.md -------------------------------------------------------------------------------- /sets/boost/droid-commander/r2-d2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/droid-commander/r2-d2/main.py -------------------------------------------------------------------------------- /sets/boost/droid-commander/r2-d2/r2-d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/droid-commander/r2-d2/r2-d2.jpg -------------------------------------------------------------------------------- /sets/boost/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/boost/index.md -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/60198-cargo-train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/60198-cargo-train.jpg -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/index.md -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/slope-detection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/slope-detection/index.md -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/slope-detection/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/slope-detection/main.py -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/slope-detection/sensor-placement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/slope-detection/sensor-placement.jpg -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/slope-detection/slope-detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/slope-detection/slope-detection.jpg -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/speed-control/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/speed-control/index.md -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/speed-control/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/speed-control/main.py -------------------------------------------------------------------------------- /sets/city/60198-cargo-train/speed-control/train-load.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/60198-cargo-train/speed-control/train-load.jpg -------------------------------------------------------------------------------- /sets/city/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/city/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/color_sorter/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/color_sorter/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/color_sorter/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/color_sorter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/color_sorter/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/color_sorter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/color_sorter/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/color_sorter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/color_sorter/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/gyro_boy/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/gyro_boy/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/gyro_boy/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/gyro_boy/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/gyro_boy/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/gyro_boy/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/gyro_boy/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/gyro_boy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/gyro_boy/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/puppy/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/puppy/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/puppy/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/puppy/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/puppy/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/puppy/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/puppy/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/puppy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/puppy/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_arm/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_arm/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_arm/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_arm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_arm/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_arm/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_arm/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_arm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_arm/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_basic/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | .venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_basic/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_basic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_basic/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_line/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | .venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_line/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_line/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_line/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | .venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/robot_educator_ultrasonic/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-core/sets_ev3_education_core.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-core/sets_ev3_education_core.code-workspace -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/elephant/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/elephant/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/elephant/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/elephant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/elephant/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/elephant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/elephant/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/elephant/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/elephant/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/sets_ev3_education_expansion.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/sets_ev3_education_expansion.code-workspace -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/stair_climber/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/stair_climber/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/stair_climber/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/stair_climber/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/tank_bot/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/tank_bot/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/tank_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/tank_bot/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/znap/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/znap/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/znap/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/znap/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/znap/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/znap/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/znap/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/education-expansion/znap/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/education-expansion/znap/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/bobb3e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/bobb3e.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/bobb3e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/bobb3e.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/bobb3e/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/bobb3e/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/dinor3x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/dinor3x.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/dinor3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/dinor3x.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/dinor3x/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/dinor3x/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/el3ctric-guitar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/el3ctric-guitar.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/el3ctric_guitar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/el3ctric_guitar.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/el3ctric-guitar/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/el3ctric-guitar/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/ev3-d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/ev3-d4.png -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/ev3_d4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/ev3_d4.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-d4/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-d4/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/ev3-game.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/ev3-game.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/ev3_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/ev3_game.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/ev3-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/ev3-game/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/README.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/kraz3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/kraz3.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/kraz3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/kraz3.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/kraz3/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/kraz3/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/mr-b3am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/mr-b3am.png -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/mr-b3am/mr_b3am.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/mr-b3am/mr_b3am.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/rac3-truck.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/rac3-truck.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/rac3-truck/rac3_truck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/rac3-truck/rac3_truck.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/README.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/robodoz3r.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/robodoz3r.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/robodoz3r/robodoz3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/robodoz3r/robodoz3r.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/sets-mindstorms-ev3-home-bonus.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/sets-mindstorms-ev3-home-bonus.code-workspace -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/wack3m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/wack3m.jpg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-bonus/wack3m/wack3m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-bonus/wack3m/wack3m.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/ev3rstorm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/ev3rstorm.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/ev3rstorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/ev3rstorm.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/ev3rstorm/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/ev3rstorm/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/gripp3r.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/gripp3r.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/gripp3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/gripp3r.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/gripp3r/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/gripp3r/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/mindstorms-ev3-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/mindstorms-ev3-home.jpg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/r3ptar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/r3ptar.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/r3ptar/r3ptar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/r3ptar/r3ptar.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/sets_ev3_home.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/sets_ev3_home.code-workspace -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/README.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/main.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/spik3r.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/spik3r.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/spik3r/spik3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/spik3r/spik3r.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | venv/ 4 | -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/.vscode/extensions.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/.vscode/launch.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/.vscode/settings.json -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/index.md -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/rc_tank_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/rc_tank_util.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r_base.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r_with_biblade_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r_with_biblade_spinner.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r_with_blasting_bazooka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r_with_blasting_bazooka.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r_with_gripping_claw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r_with_gripping_claw.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/home-main/track3r/track3r_with_heavy_hammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/home-main/track3r/track3r_with_heavy_hammer.py -------------------------------------------------------------------------------- /sets/mindstorms-ev3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-ev3/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/exploration-rover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/exploration-rover.jpg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/exploration-rover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/exploration-rover.pdf -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/fan-inventions/exploration-rover/main.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/fan-inventions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/fan-inventions/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/.gitignore -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/blast/blast-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/blast/blast-basic.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/blast/blast.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/blast/blast.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/blast/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/blast/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/basic.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo-bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo-bone.png -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo.jpg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_basic.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_remote.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_repl.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_roam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_roam.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_template.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/gelo_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/gelo_tricks.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/remote.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/remote.png -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/repl.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/roam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/roam.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/template.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/gelo/tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/gelo/tricks.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/mvp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/mvp/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/mvp/mvp-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/mvp/mvp-basic.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/mvp/mvp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/mvp/mvp.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/robot-inventor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/robot-inventor.jpg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/tricky/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/tricky/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/tricky/tricky-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/tricky/tricky-basic.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/tricky/tricky-playing-soccer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/tricky/tricky-playing-soccer.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/main-models/tricky/tricky.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/main-models/tricky/tricky.jpeg -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/balancer/README.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/balancer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/balancer/main.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/block-flipper/block-flipper.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/block-flipper/block-flipper.JPG -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/block-flipper/block-flipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/block-flipper/block-flipper.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/block-flipper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/block-flipper/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/mini-loader/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/mini-loader/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/mini-loader/mini-loader.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/mini-loader/mini-loader.JPG -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/mini-loader/miniLoader_RC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/mini-loader/miniLoader_RC.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/quick-reference/Quick_Ref.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/quick-reference/Quick_Ref.JPG -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/quick-reference/Quick_Ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/quick-reference/Quick_Ref.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/quick-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/quick-reference/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/steerbot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/steerbot/index.md -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/steerbot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/steerbot/main.py -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/steerbot/steerbot-instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/steerbot/steerbot-instructions.pdf -------------------------------------------------------------------------------- /sets/mindstorms-robot-inventor/other-models/steerbot/steerbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/mindstorms-robot-inventor/other-models/steerbot/steerbot.jpg -------------------------------------------------------------------------------- /sets/spike-prime/core-set/cnc_machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/cnc_machine/README.md -------------------------------------------------------------------------------- /sets/spike-prime/core-set/cnc_machine/basic_cnc_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/cnc_machine/basic_cnc_machine.py -------------------------------------------------------------------------------- /sets/spike-prime/core-set/hand-controlled-grabber/hand-controlled-grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/hand-controlled-grabber/hand-controlled-grabber.png -------------------------------------------------------------------------------- /sets/spike-prime/core-set/hand-controlled-grabber/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/hand-controlled-grabber/index.md -------------------------------------------------------------------------------- /sets/spike-prime/core-set/hand-controlled-grabber/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/hand-controlled-grabber/main.py -------------------------------------------------------------------------------- /sets/spike-prime/core-set/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/index.md -------------------------------------------------------------------------------- /sets/spike-prime/core-set/kiki_dog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/kiki_dog/README.md -------------------------------------------------------------------------------- /sets/spike-prime/core-set/kiki_dog/kiki_seeing_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/kiki_dog/kiki_seeing_colors.py -------------------------------------------------------------------------------- /sets/spike-prime/core-set/spike-prime-core.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/core-set/spike-prime-core.jpg -------------------------------------------------------------------------------- /sets/spike-prime/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/spike-prime/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/42099-off-roader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/42099-off-roader.jpg -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/driving/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/driving/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/driving/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/driving/main.py -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/driving/truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/driving/truck.jpg -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/keyboard-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/keyboard-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/keyboard-remote/keyboard-remote-truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/keyboard-remote/keyboard-remote-truck.jpg -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/keyboard-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/keyboard-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/keyboard-remote/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/keyboard-remote/remote.py -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/keyboard-remote/terminalwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/keyboard-remote/terminalwindow.png -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/obstacle-avoidance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/obstacle-avoidance/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/obstacle-avoidance/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/obstacle-avoidance/main.py -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/obstacle-avoidance/obstacle-avoidance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/obstacle-avoidance/obstacle-avoidance.jpg -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/powered-up-remote/off-roader-blocks-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/powered-up-remote/off-roader-blocks-screenshot.png -------------------------------------------------------------------------------- /sets/technic/42099-off-roader/powered-up-remote/powered-up-remote-truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42099-off-roader/powered-up-remote/powered-up-remote-truck.jpg -------------------------------------------------------------------------------- /sets/technic/42109_top_gear_rally_car/keyboard_remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42109_top_gear_rally_car/keyboard_remote/README.md -------------------------------------------------------------------------------- /sets/technic/42109_top_gear_rally_car/keyboard_remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42109_top_gear_rally_car/keyboard_remote/main.py -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/42114-volvo-articulated-hauler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/42114-volvo-articulated-hauler.jpg -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/index.md -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/powered-up-remote/42114_88010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/powered-up-remote/42114_88010.jpg -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42114-volvo-articulated-hauler/powered-up-remote/remote_description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42114-volvo-articulated-hauler/powered-up-remote/remote_description.png -------------------------------------------------------------------------------- /sets/technic/42124-off-road-buggy/42124-off-road-buggy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42124-off-road-buggy/42124-off-road-buggy.jpg -------------------------------------------------------------------------------- /sets/technic/42124-off-road-buggy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42124-off-road-buggy/index.md -------------------------------------------------------------------------------- /sets/technic/42124-off-road-buggy/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42124-off-road-buggy/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42124-off-road-buggy/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42124-off-road-buggy/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42124-off-road-buggy/powered-up-remote/powered-up-remote-buggy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42124-off-road-buggy/powered-up-remote/powered-up-remote-buggy.jpg -------------------------------------------------------------------------------- /sets/technic/42129-mercedes-benz-zetros/42129-mercedes-benz-zetros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42129-mercedes-benz-zetros/42129-mercedes-benz-zetros.jpg -------------------------------------------------------------------------------- /sets/technic/42129-mercedes-benz-zetros/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42129-mercedes-benz-zetros/index.md -------------------------------------------------------------------------------- /sets/technic/42129-mercedes-benz-zetros/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42129-mercedes-benz-zetros/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42129-mercedes-benz-zetros/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42129-mercedes-benz-zetros/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42129-mercedes-benz-zetros/powered-up-remote/powered-up-remote-lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42129-mercedes-benz-zetros/powered-up-remote/powered-up-remote-lock.jpg -------------------------------------------------------------------------------- /sets/technic/42131-cat-bulldozer/42131-cat-bulldozer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42131-cat-bulldozer/42131-cat-bulldozer.jpg -------------------------------------------------------------------------------- /sets/technic/42131-cat-bulldozer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42131-cat-bulldozer/index.md -------------------------------------------------------------------------------- /sets/technic/42131-cat-bulldozer/powered-up-remote/42131-cat-bulldozer-remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42131-cat-bulldozer/powered-up-remote/42131-cat-bulldozer-remote.jpg -------------------------------------------------------------------------------- /sets/technic/42131-cat-bulldozer/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42131-cat-bulldozer/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42131-cat-bulldozer/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42131-cat-bulldozer/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/42140-app-controlled-transformation-vehicle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/42140-app-controlled-transformation-vehicle.jpg -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/index.md -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/main2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/main2.py -------------------------------------------------------------------------------- /sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/transformation-vehicle-remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42140-app-controlled-transformation-vehicle/powered-up-remote/transformation-vehicle-remote.jpg -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/42160-audi-rs-q-e-tron.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/42160-audi-rs-q-e-tron.webp -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/index.md -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/e-tron-remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/e-tron-remote.jpg -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/index.md -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/powered-up-remote/main.py -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi-xbox-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi-xbox-program.png -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi-xbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi-xbox.jpg -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi_blocks.py -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/xbox-controller/audi_python.py -------------------------------------------------------------------------------- /sets/technic/42160-audi-rs-q-e-tron/xbox-controller/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/42160-audi-rs-q-e-tron/xbox-controller/index.md -------------------------------------------------------------------------------- /sets/technic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/sets/technic/index.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/setup.cfg -------------------------------------------------------------------------------- /tutorials/dev/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/dev.png -------------------------------------------------------------------------------- /tutorials/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/index.md -------------------------------------------------------------------------------- /tutorials/dev/tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/tools/index.md -------------------------------------------------------------------------------- /tutorials/dev/tools/linux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/tools/linux/index.md -------------------------------------------------------------------------------- /tutorials/dev/tools/linux/pybricks-code-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/tools/linux/pybricks-code-linux.png -------------------------------------------------------------------------------- /tutorials/dev/tools/vscode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/tools/vscode/index.md -------------------------------------------------------------------------------- /tutorials/dev/tools/vscode/pybricks-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/dev/tools/vscode/pybricks-vscode.png -------------------------------------------------------------------------------- /tutorials/remix/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/remix/index.md -------------------------------------------------------------------------------- /tutorials/remix/iot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/remix/iot/index.md -------------------------------------------------------------------------------- /tutorials/remix/iot/iot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/remix/iot/iot.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/drawing.svg -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/hub-to-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/hub-to-device.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/hub-to-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/hub-to-phone.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-communication/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-communication/demo.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-communication/hub-to-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-communication/hub-to-pc.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-communication/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-communication/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-communication/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-communication/main.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-keyboard/hub-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-keyboard/hub-keyboard.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-keyboard/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-keyboard/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-keyboard/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-keyboard/remote.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/pc-keyboard/terminalwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/pc-keyboard/terminalwindow.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-device/wireless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-device/wireless.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/broadcast/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/broadcast/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/broadcast/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/broadcast/remote.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/broadcast/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/broadcast/vehicle.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/hub-to-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/hub-to-hub.png -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplo-spike-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplo-spike-small.jpg -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplo.py -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplotrain.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/duplotrain.mpd -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/index.md -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/instructions.pdf -------------------------------------------------------------------------------- /tutorials/wireless/hub-to-hub/pybricks-to-official-fw/train_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/hub-to-hub/pybricks-to-official-fw/train_driver.py -------------------------------------------------------------------------------- /tutorials/wireless/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/index.md -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/button-basics/RC_Tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/button-basics/RC_Tutorial.py -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/button-basics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/button-basics/index.md -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/drive-base/RC_DriveBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/drive-base/RC_DriveBase.py -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/drive-base/drive-base.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/drive-base/drive-base.JPG -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/drive-base/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/drive-base/index.md -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/index.md -------------------------------------------------------------------------------- /tutorials/wireless/remote-control/lego-remote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/tutorials/wireless/remote-control/lego-remote.jpg -------------------------------------------------------------------------------- /update_workspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybricks/pybricks-projects/HEAD/update_workspaces.py --------------------------------------------------------------------------------