View Single Post
  #1   Spotlight this post!  
Unread 21-02-2013, 07:40
tlewis tlewis is offline
Registered User
None #0138
 
Join Date: Feb 2012
Location: NH
Posts: 3
tlewis is an unknown quantity at this point
Re: Wierd Robot Problems

And at the end of your driving() routine, the line:
if (gyroe=true){

likely doesn't do what you want.....it does not test to see if the value of "gyroe" is "true", but assigns the value "true" to the variable "gyroe", then evaluates the result -- which will ALWAYS be true. What you want is:
if (gyroe==true){

You can catch these errors at compile time if you write it this way:
if (true == gyroe){

because then if you forget one of the equal signs, then you are attempting to assign a value to the constant "true", which the compiler will flag as an error. I learned that the hard way. More than once.
Reply With Quote