Initial commit from weevil new --template basic
This commit is contained in:
1
src/main/java/robot/hardware/.gitkeep
Normal file
1
src/main/java/robot/hardware/.gitkeep
Normal file
@@ -0,0 +1 @@
|
||||
# This file ensures the directory is tracked by git even when empty
|
||||
27
src/main/java/robot/opmodes/BasicOpMode.java
Normal file
27
src/main/java/robot/opmodes/BasicOpMode.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package robot.opmodes;
|
||||
|
||||
/**
|
||||
* Basic OpMode for chute-drive
|
||||
*
|
||||
* This is a placeholder to demonstrate project structure.
|
||||
* To use this with FTC SDK:
|
||||
* 1. Run: weevil deploy chute-drive
|
||||
* 2. Add FTC SDK imports (OpMode, TeleOp, etc.)
|
||||
* 3. Extend OpMode and implement methods
|
||||
*
|
||||
* For local testing (without robot), write unit tests in src/test/java/robot/
|
||||
* Run tests with: ./gradlew test
|
||||
*
|
||||
* Created by Weevil 1.1.0-rc1
|
||||
* Template: basic
|
||||
*/
|
||||
public class BasicOpMode {
|
||||
|
||||
// This placeholder compiles without FTC SDK dependencies
|
||||
// Replace with actual OpMode code when deploying to robot
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("chute-drive - Ready for deployment");
|
||||
System.out.println("Run: weevil deploy chute-drive");
|
||||
}
|
||||
}
|
||||
1
src/main/java/robot/subsystems/.gitkeep
Normal file
1
src/main/java/robot/subsystems/.gitkeep
Normal file
@@ -0,0 +1 @@
|
||||
# This file ensures the directory is tracked by git even when empty
|
||||
1
src/test/java/robot/.gitkeep
Normal file
1
src/test/java/robot/.gitkeep
Normal file
@@ -0,0 +1 @@
|
||||
# This file ensures the directory is tracked by git even when empty
|
||||
Reference in New Issue
Block a user