done on laptop
This commit is contained in:
parent
11be5085b5
commit
8c5e00c912
3 changed files with 19 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id "cpp"
|
||||
id "google-test-test-suite"
|
||||
id "edu.wpi.first.GradleRIO" version "2024.1.1"
|
||||
id "edu.wpi.first.GradleRIO" version "2024.3.2"
|
||||
}
|
||||
|
||||
// Define my targets (RoboRIO) and artifacts (deployable files)
|
||||
|
|
7
src/main/cpp/cowlib/SwerveModule.cpp
Normal file
7
src/main/cpp/cowlib/SwerveModule.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
// Copyright (c) FIRST and other WPILib contributors.
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "cowlib/SwerveModule.h"
|
||||
|
||||
SwerveModule::SwerveModule(int driveMotorId, int steerMotorId, int encoderId) {}
|
11
src/main/include/cowlib/SwerveModule.h
Normal file
11
src/main/include/cowlib/SwerveModule.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Copyright (c) FIRST and other WPILib contributors.
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#pragma once
|
||||
|
||||
class SwerveModule {
|
||||
private:
|
||||
public:
|
||||
SwerveModule(int driveMotorId, int steerMotorId, int encoderId);
|
||||
};
|
Loading…
Reference in a new issue