Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion developerRobot/src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ public class Robot extends TimedRobot {
* This function is run when the robot is first started up and should be used for any
* initialization code.
*/
public Robot() {}
public Robot() {



}

/** This function is run once each time the robot enters autonomous mode. */
@Override
Expand Down
9 changes: 8 additions & 1 deletion developerRobot/src/main/native/cpp/Robot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@

#include <frc/TimedRobot.h>


#include <utility>

class Robot : public frc::TimedRobot {
public:
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
Robot() {}
Robot() {



}

/**
* This function is run once each time the robot enters autonomous mode
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading