Poe Bot
Poe Bot
Product Analysis of
PoeBot
#include "JoystickDriver.c"
task main()
{
while(1==1){
Distinguishing
characteristics after
redesign:
if(vexRT[Btn6U]==1){
motor(right_motor)= 25;
}
else if (vexRT[Btn6D]==1){
motor(right_motor)= -25;
}
else{
motor(right_motor)= 0;
Explanation of Competition
(in detail):
The course had various obstacles to
test your bots capability. You first
had to pick up bean bags then
maneuver around cones and either
go through or around a speed
Bump then drop the bean bag off
in a container then repeat the
process until 3 minutes was up
Programming Code:
}
if(vexRT[Btn5U]==1){
motor(left_motor)= 25;
}
else if (vexRT[Btn5D]==1){
motor(left_motor)= -25;
}
else{
motor(left_motor)= 0;
Reflection of Competition
Performance:
Our PoeBot did not perform very
good. We had problems picking up
the bean bags but when we finally
picked one up our bot could not turn
left or right to go around the cones.
Our Bot failed the obstacle course
and failed us.
}
if(vexRT[Btn8D]==1){
motor(arm_motor)= 25;
}
else if(vexRT[Btn8D]==1){
motor(arm_motor)= -25;
}
else
{
motor(arm_motor)= 0;
}
if(vexRT[Btn8R]==1){
setServo(grip_servo, 100);
}
else if(vexRT[Btn8U]==1){
setServo(grip_servo, 0);
}
}
}