Quote:
Originally Posted by Jtbillick
What is the correct package and Robot class name? Sorry, I'm the only programmer on my team and this is my first year doing this.
|
The correct name depends on how your project is setup. The Robot class is the one that contains the robotInit(), teleopInit(), teleopPeriodic() and other methods (assuming you are using iterative or command based). The package name is the text after the package declaration at the beginning of the Robot class.
For example, my robot class is called "Robot" and its first line is:
Code:
package org.usfirst.frc.team2084.CMonster2015;
so my build.properties file has these lines:
Code:
package=org.usfirst.frc.team2084.CMonster2015
robot.class=${package}.Robot