LEGO Mindstorms EV3 Track3r Review

Today, I review the first robot of the new LEGO Mindstorms EV3: Track3r.

LEGO Mindstorms EV3 Track3r

I think LEGO has replace e for 3 in a hope to make their models look cooler which I think it is plainly stupid as they are already cool enough… but well… LEGO does, I build. Here is the robot.

Tracker is a small robot with uses the different sensors the Mindstorms EV3 comes with, all but the touch sensor. It features a tracked base using both L-motors that attach at the sides of the NXT Brick. It has also a IR sensor on the back of the robot ( or the front, still not really sure ) as well as a set of tools that are build using the M-motor and that are easy to replace.

So let’s review the different stages.

_IMG_0927

For the first model there is a printed manual on the LEGO Mindstorms EV3 box that let you build it. It isn’t a challenge at all and the building process is quite straight forward.

And then, once you are done you are on your own… well, not really. You are supposed to download the new LEGO Mindstorms software and install it. Once you open it you will see this screen.

LEGO Mindstorms EV3 Software

Choose the Track3r robot and follow me in the review.

Track3r Mission 01 – Blend It with Precision

The goal on this mission is to remove a tire from the mission pad. This mission show you how to control both L-motors and M-motor, so basically the task is about completing the robot and coding an small program that makes the robot move forward and then turns two rotations its M-motor.

EV3 Program

Captura de pantalla 2013-09-11 a la(s) 10.49.07

As you see it is a quite simple program with a block to move B+C motors first forward, then move the A motor two complete rotations and finally move B+C backwards.

Problems with Track3r Mission 1

Problem: My Track3r doesn’t move

If your robot doesn’t move the problem can be that the batteries are empty ( I have suffered this one more than once ) and or that you didn’t connected the cables from motors to brick in the correct way. Refer to the instructions book and fix it.

Problem: My Track3r doesn’t move on a straight line

If it is something serious you perhaps miscoded the robot. Make sure you set both motors at the same speed or use the new Tracked Vehicle box on the EV3 software.

If it is something small it may be related to the fact that each motor can be slightly different so one track may move slightly faster than the other. You can try to correct this by software because the alternative is to rebuild it in a different way. If it goes a bit to the left just make the left track moves slightly faster, just 1%-2$ more. Most of times it does the trick.

Problem: My Track3r doesn’t move the blender to push the tire out

Again, the problem may be related to not connecting the cable correctly or to the fact that you may have forgotten to add the block that operates the M-motor. Just making it perform two complete rotations is enough to take the tire out.

Other problems

Do you have another problem? Drop me a line on the comments and let me help you.

Track3r Mission 02 – Blast It Away

You can now remove the blender from the front ( or back ) of your robot. But you don’t need to take it apart, the rest of tools can be built with the remaining parts.
This time we are going to build a ball launcher for our robot to hit tires places at two given places of our mission pad.

_IMG_0976

So basically we need to build a ball launcher that it is similar to the new available at Mindstorms NXT 2.0. It is pretty interesting how the big gear is used to move the axle that push the ball out.

IMG_0984

Here is a video of the model working.

EV3 Program

mission-02-program

The problem with this program if you want to build it yourself is just to measure the angle the robot needs to turn and then move left, shoot, move right twice the distance and shoot again.

Problems with Track3r Mission 2

Problem: My Track3r doesn’t turn

Checked the batteries? Are the cables connected? Did you add the block to turn the tracked vehicle? Sounds really strange. I would double check the cables.

Problem: My Track3r doesn’t turn too much or too little

You can do the math here or you can just find it using try and error. The problem is that you need to turn your robot just x degrees to align the tires heap.

Problem: My Track3r doesn’t shoot

Oh, I have had this one too. First of all rule out the simple causes. Check cables.
Are they balls in the shooter? Is there any ball on the shooter that block the rest?
In my case the gear where the axle that push the ball out is connected was placed in such a way that a single rotation sometimes didn’t shoot a ball. So try adding more than one rotation ( two for example ) to make sure something came out of the robot’s gun.

Other problems

Do you have another problem? Drop me a line on the comments and let me help you.

Track3r Mission 03 Take Them Away

So we remove the ball shooter and build the next accessory that it is something similar to a claw. We will use this claw to grab tires from the mission pad and place them on special designated areas.

_IMG_0979

This is the first tool that really caught my attentions. The Claw is really cool and it is very nice the way it has been designed.

IMG_0981

Here you have the model working

EV3 Program

mission-03-program

Here you have another example of measuring. In this case you need to measure how many rotations you need to get to the first wheel, how much to turn to be over the pad area designated to drop the wheel and then the same thing for the next wheel. Then Track3r returns to the mission pad’s starting point.

So let’s view the program. The first M-motor block opens the claw and then the loop is a task that it is repeated twice: Move forward, two rotations, close claw, do a sound, move forward slightly to the right, open the claw and move backward slightly to the right again.

The final block moves the robot to the mission pad’s entry point.

Problems with Track3r Mission 3

Problem: My Track3r turns to the wrong side

I know this one! I know! You either crossed the motor’s cables or you just coded the Tracked Vehicle block to turn to the wrong side. It is easy to fix. I suggest you check the cables first… if I would have a cent each time I did it wrong…

Problem: My Track3r doesn’t open the claw

Is the M-motor correctly plugged? Make sure that you are not rotating the motor in the wrong direction.

Problem: My Track3r completely missed the wheel

As in the previous mission it is all a matter of measuring the distances and angles. You either do the math or you just find them by try and error.

Other problems

Do you have another problem? Drop me a line on the comments and let me help you.

Track3r Mission 04 Tactical Defense System

In this mission you have some interesting things like the IR Sensor. You have to build a tool that looks very much like a hammer and you will use it to crush the hands that dare get near your Track3r back.

_IMG_0985

The hammer is easy to build, just make sure you add the rubber bands or you will end up with a few broken LEGO bricks.

EV3 Program

mission-04-program

This program is the first that really needs a loop, and you have two in fact. It is a bit big but it isn’t very complex.

The first M-motor block moves the Hammer back and then the real loop begins. As you can see on the right side of the screen the loops runs forever. So next thing inside the loop is a comparison using the IR Sensor distance check. If there is anything below 25cm it will execute the upper branch on any other case it will execute the lower branch.

The upper branch, shows an image on the screen, rotates 360º, that is 1000 degrees of the motors B+C, then moves the M-motor as fast as possible foward for 0.3 seconds, laugh and move it back.

The lower branch on the other hand coded the behaviour for patrolling and moving a bit, just a bit, the hammer.

Problems with Track3r Mission 4

Problem: My Track3r doesn’t turn

Is it correctly plugged? Did you code the L-motor block to turn?

Problem: My Track3r doesn’t move its hammer

Make sure the M-motor is still plug and that there is nothing in the big gears that are supposes to launch the hammer forward.

Problem: My Track3r doesn’t detect my hand

Is the IR sensor plugged? Did you coded the behaviour about what to do when detecting an object near the back of the robot?

Other problems

Do you have another problem? Drop me a line on the comments and let me help you.

Track3r Mission 05 Time Trial

_IMG_1893

In this mission, you will command TRACK3R with the Infrared Beacon to pass through all the checkpoints on the Mission Pad before time runs out! When you complete the task you will get a score.

EV3 Program

mission-05-program

Well, there is nothing to build here but this is perhaps the most fun use of the brick I have seen. LEGO has created a block that does the score count and the time checks. Personally, I didn’t even tried to write the code as it is quite big.

This program is a great example of parallel execution as you have several task running at the same time.
The first thread is the one running all the program logic… do double click on it at your own responsibility :P
The second thread is the one that stop the blender when you step on a red line and make the alarm goes.
Finally the third thread is the one that keeps track of each color you scanned and finally decide if you did it or if the time ran out.

Overview

So here is my review of the first LEGO Mindstorms EV3 model: Track3r.

Miguel says 7.5/10
Building experience
Value for money
Playability
Parts

It is not a bad mission but personally I really expected more from a “toy” that was worth £300 ( a bit less at Amazon.co.uk, around £249 usually )

Pros

Although several of the first missions are a complete lose of time missions 04 and 05 are really cool.
The playability of the last mission is something extraordinary. I spend myself around 40 minutes trying and trying…

Cons

Personally I think the first missions are too scripted.

11 thoughts on “LEGO Mindstorms EV3 Track3r Review”

  1. Pingback: LEGO Mindstorms EV3 Spik3r Review ← LEGO Reviews & Videos

  2. Pingback: Mindstorms EV3 Color Sorter MOC ← LEGO Reviews & Videos

Leave a Comment