Go to Post The best teams have students who genuinely enjoy scouting and the alliance selection process. - Jay O'Donnell [more]
Home
Go Back   Chief Delphi > Technical > Programming > Java
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Spotlight this post!  
Unread 20-02-2014, 20:52
AdamWiwc AdamWiwc is offline
Registered User
FRC #5185
 
Join Date: Jan 2014
Location: Airdrie
Posts: 4
AdamWiwc is an unknown quantity at this point
Speeding up and slowing down in autonomous

For some reason whenever I try to run this code; speed remains at 0 and it counts i up to x and then speed is suddenly changed to 1.0. Speed is supposed to be a decimal of x depending on how many times the for loop has run through. I don't understand why this is happening and would be very grateful for some clarity.

double speed;
int x = 200;

for(int i = 0; i <= x; i++){
double gyroAngle = gyro.getAngle();
speed = i/x;
chassis.drive(-speed,-gyroAngle * Kp);
System.out.println("Speed- " + speed);
System.out.println("Ticks- " + i);
Timer.delay(0.01);
}
Timer.delay(1.0);
for(int i = x; i >= 0; i--){
double gyroAngle = gyro.getAngle();
speed = i/x;
chassis.drive(-speed,-gyroAngle * Kp);
Timer.delay(0.01);
}
chassis.drive(0.0, 0.0); //full stop

Thanks
~Adam Wiwc
Reply With Quote
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 13:39.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi