Spark Motors
Last updated
Last updated
Spark Motors are just the type of motors the Romi uses. After this, we'll refer to them as Sparks. Here are them on the Romi itself:
Spark
ObjectsThis is the constructor of a Spark:
Each motor has its specific ID to differentiate between each other. Usually, their IDs are written on them (if they aren't, ask an experienced programmer for help). No two motors should have the same ID, or your motors won't work properly.
In the Romi template, both motors were already created, and their IDs were filled out. Here is some code for creating said motors:
Now that you can access the motors through your code (yay!), you need to make them move. It's a lot easier than you think.
void set(double speed)
As you can probably tell, set() is a method that sets the motor's speed to whatever value speed
is. Speed can only be between -1.0 and 1.0. Anything more or less would probably not work.
Spark
MotorsOne other thing you should know besides setting motors is inverting motors. Inverting motors allows you to make 2 opposite-facing motors move in the same direction. One example of where you would need this is on the Romi because the 2 motors are facing opposite directions, so if we make both the motors move at 100% speed, the Romi won't go straight, but instead spin because one motor is pushing the opposite way as the other motor.
Inverting a motor is also a method in the motor object like the .set();
method. Here is an example with the m_rightMotor
and the m_leftMotor
object.
moveRobot()
MethodNow that you learned about how to set motors, at the bottom of the RomiDrivetrain
class, make a helper method called go
.
Conditions:
Once you have what you believe to be your answer, compare your code with the answer code below.