diff --git a/sets/ev3/home/track3r/README.md b/sets/ev3/home/track3r/README.md new file mode 100644 index 0000000..140ffb1 --- /dev/null +++ b/sets/ev3/home/track3r/README.md @@ -0,0 +1,12 @@ +# Example LEGO® MINDSTORMS® EV3 Track3r Programs + +These programs require LEGO® EV3 MicroPython v2.0 downloadable at https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3. + +Building instructions can be found at https://www.lego.com/en-us/themes/mindstorms/buildarobot. + +There are 4 Track3r variants with 4 different tools: + +- Track3r with Bi-blade Spinner +- Track3r with Blasting Bazooka +- Track3r with Gripping Claw +- Track3r with Heavy Hammer diff --git a/sets/ev3/home/track3r/track3r_base.py b/sets/ev3/home/track3r/track3r_base.py index 438460a..c106891 100644 --- a/sets/ev3/home/track3r/track3r_base.py +++ b/sets/ev3/home/track3r/track3r_base.py @@ -1,15 +1,5 @@ #!/usr/bin/env pybricks-micropython -""" -Example LEGO® MINDSTORMS® EV3 Track3r Program ---------------------------------------------- - -This program requires LEGO® EV3 MicroPython v2.0 downloadable at: -https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3 - -Building instructions can be found at: -https://www.lego.com/en-us/themes/mindstorms/buildarobot -""" from pybricks.hubs import EV3Brick from pybricks.ev3devices import Motor diff --git a/sets/ev3/home/track3r/track3r_with_biblade_spinner.py b/sets/ev3/home/track3r/track3r_with_biblade_spinner.py index 280b569..f229937 100644 --- a/sets/ev3/home/track3r/track3r_with_biblade_spinner.py +++ b/sets/ev3/home/track3r/track3r_with_biblade_spinner.py @@ -1,15 +1,5 @@ #!/usr/bin/env pybricks-micropython -""" -Example LEGO® MINDSTORMS® EV3 Track3r Program ---------------------------------------------- - -This program requires LEGO® EV3 MicroPython v2.0 downloadable at: -https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3 - -Building instructions can be found at: -https://www.lego.com/en-us/themes/mindstorms/buildarobot -""" from pybricks.parameters import Button from pybricks.tools import wait diff --git a/sets/ev3/home/track3r/track3r_with_blasting_bazooka.py b/sets/ev3/home/track3r/track3r_with_blasting_bazooka.py index d6c2e8f..c9ccd92 100644 --- a/sets/ev3/home/track3r/track3r_with_blasting_bazooka.py +++ b/sets/ev3/home/track3r/track3r_with_blasting_bazooka.py @@ -1,15 +1,5 @@ #!/usr/bin/env pybricks-micropython -""" -Example LEGO® MINDSTORMS® EV3 Track3r Program ---------------------------------------------- - -This program requires LEGO® EV3 MicroPython v2.0 downloadable at: -https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3 - -Building instructions can be found at: -https://www.lego.com/en-us/themes/mindstorms/buildarobot -""" from pybricks.media.ev3dev import ImageFile, SoundFile from pybricks.parameters import Button, Stop diff --git a/sets/ev3/home/track3r/track3r_with_gripping_claw.py b/sets/ev3/home/track3r/track3r_with_gripping_claw.py index 815daa1..7ad9fcc 100644 --- a/sets/ev3/home/track3r/track3r_with_gripping_claw.py +++ b/sets/ev3/home/track3r/track3r_with_gripping_claw.py @@ -1,15 +1,5 @@ #!/usr/bin/env pybricks-micropython -""" -Example LEGO® MINDSTORMS® EV3 Track3r Program ---------------------------------------------- - -This program requires LEGO® EV3 MicroPython v2.0 downloadable at: -https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3 - -Building instructions can be found at: -https://www.lego.com/en-us/themes/mindstorms/buildarobot -""" from pybricks.media.ev3dev import SoundFile from pybricks.parameters import Button diff --git a/sets/ev3/home/track3r/track3r_with_heavy_hammer.py b/sets/ev3/home/track3r/track3r_with_heavy_hammer.py index 39ba933..61fc8f2 100644 --- a/sets/ev3/home/track3r/track3r_with_heavy_hammer.py +++ b/sets/ev3/home/track3r/track3r_with_heavy_hammer.py @@ -1,15 +1,5 @@ #!/usr/bin/env pybricks-micropython -""" -Example LEGO® MINDSTORMS® EV3 Track3r Program ---------------------------------------------- - -This program requires LEGO® EV3 MicroPython v2.0 downloadable at: -https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3 - -Building instructions can be found at: -https://www.lego.com/en-us/themes/mindstorms/buildarobot -""" from pybricks.media.ev3dev import ImageFile, SoundFile from pybricks.parameters import Button, Stop