Write Your First Robotics Software
This tutorial continues from the last part Let's make a first robot using VEX
As much as the hardware of your robot, Software design is also a very important part. You learned how to make a robot from the last part of this tutorial, from this one you'll be learning how to write your first Robotic software.
You can use different kinds of development studios to program your robot but I'd prefer if you use ROBOTC its a very powerful studio tuned to tweak the performances of your robot. It has a build in Simulator world where you can test your robot in different situations and virtual worlds, and you can upload your program directly right off the editor to your robot. Its a paid software but you will have all the features in 30-day Trial.
Installing ROBOTC
System Requirments to run ROBOTC on your computerSystem Requirements:
Intel® Pentium® processor or compatible, 800 MHz minimum
Windows XP Professional or Home Edition with Service Pack 2 or greater
256MB of RAM minimum
Up to 30MB of available hard disk space
1 available USB port
Compatible Bluetooth adapter (optional)
ROBOTC Virtual Worlds System Requirements:
Intel® Core 2 Duo®/AMD® Athlon X2® or better processor
Windows XP Home or Professional Edition with Service Pack 2 or greater, Windows Vista, Windows 7
2048 MB (2 GB) of RAM minimum
Minimum 200MB free hard drive space
NVIDIA® GeForce® 8800GTS/ATI Radeon™ HD 3850 or better video card
DirectX® 9.0 or DirectX® 10
Downloading ROBOTC
Installing ROBOTC
Building Licenses
Activating ROBOTC
To activate ROBOTC, you will need the License ID and Password that was sent to you during the purchase process.
- If you purchased a ROBOTC license online, the License ID and Password were sent to the email address specified.
- If you ordered the CD-ROM version of ROBOTC, the License ID and Password are printed on the CD label.
Follow these steps to activate on a computer with internet access:
Source: http://www.education.rec.ri.cmu.edu
Driver Installation
You will need :
- A ROBOTC for IFI Installation CD or Internet connection
- A VEX USB-to-Serial cable
Plug in the A VEX USB-to-Serial cable USB end to the Computer
If you dont have the CD you may have to download the driver from ROBOTC Prolofic USB-to-Serial Driver, the installation file will need to be extracted before you can start the installation process. Extract the “prolific_usb_driver” file by right-clicking its icon, selecting “Extract All...”, and proceeding through the following steps. Once complete, run the “SETUP” file and follow the its instructions to finish installing the USB-to-Serial driver.
Re-plug the Cable
Firmware installation
First Screen
Your robot is now ready to be used with ROBOTC
Programming
After you successfully connect the your robot, start writing your first robocode. RobotC programming interface and methods are easy to understand even for a very beginner. Thats another reason to use RobotC in this project.Before you begin programming your Arduino in ROBOTC, you'll need to let ROBOTC know which Arduino board you are using. To do this, go to the Robot menu and select Platform Type → Arduino → Standard Arduino and choose your board from one of the choices.
Select your Serial Port
Once your Arduino's Type is selected, you'll need to select which serial port the Arduino is connected to on your computer. Go to the View menu and choose Select Communication Port. From here, you'll pick your Arduino board from the dropdown menu. |
Starting a New Code
To start writing your code go File - New - New File
This is the sample code of a Line Following Robot, Please refer to the comments to understand what each part of this code does.
#pragma config(Sensor, dgtl1, rightEncoder, sensorQuadEncoder)
#pragma config(Sensor, dgtl3, leftEncoder, sensorQuadEncoder)
#pragma config(Sensor, dgtl5, compassSensor, sensorVirtualCompass)
#pragma config(Sensor, dgtl6, touchSensor, sensorTouch)
#pragma config(Sensor, dgtl8, sonarSensor, sensorSONAR_inch)
#pragma config(Motor, port2, rightMotor, tmotorNormal, openLoop)
#pragma config(Motor, port3, leftMotor, tmotorNormal, openLoop,reversed)
#pragma config(Motor, port6, gripper, tmotorNormal, openLoop)
#pragma config(Sensor, in1, lineTrackerLeft, sensorLineFollower)
#pragma config(Sensor, in2, lineTrackerCenter, sensorLineFollower)
#pragma config(Sensor, in3, lineTrackerRight, sensorLineFollower)
task main()
{
wait1Msec(2000);// waiting time before the program execute
int threshold;
threshold = 1500;// initiate a threshold
while(1 == 1)//while the value is equal to 1 do the last within brackets
{
if(SensorValue(lineTrackerLeft) > threshold) // if the left sensor goes dark above the threshold deactivate the left motor and keep the right motor
{
motor[leftMotor] = 0;
motor[rightMotor] = 100;
}
{ if(SensorValue(lineTrackerCenter) > threshold) // center sensor goes dark above the threshold keep both motors running
motor[leftMotor] = 100;
motor[rightMotor] = 100;
}
{ if(SensorValue(lineTrackerRight) > threshold)// if the right sensor goes dark above the threshold deactivate the right motor and keep the left motor
motor[leftMotor] = 100;
motor[rightMotor] = 0;
}
}
}
Also ROBOTC has a number of sample programs for you to learn how to program and use your Arduino board. You can open a sample program by going to the File menu and selecting Open Sample Program. Once you're in the open sample programs directory, make sure you choose your Correct Sample Program Folder for your Arduino. |
Voila!! you wrote your first robocode. Make sure you try different codes as your imagination to improve your coding.
0 comments