Changes between Version 31 and Version 32 of ControlSystems/SoftwareTeam/Training/GettingStarted/IntroRobotJava
- Timestamp:
- Oct 30, 2019, 12:04:26 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/IntroRobotJava
v31 v32 250 250 Notice our first use of the logical OR operator (!||) to test whether either of two conditions is true 251 251 {{{ 252 default:253 252 if ((leftEncoder.getDistance() > 36.0) || 254 253 (rightEncoder.getDistance() > 36.0)) {