done on laptop

main
Zynh0722 2024-03-27 14:24:51 -07:00
parent 11be5085b5
commit 8c5e00c912
3 changed files with 19 additions and 1 deletions

View File

@ -1,7 +1,7 @@
plugins { plugins {
id "cpp" id "cpp"
id "google-test-test-suite" 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) // Define my targets (RoboRIO) and artifacts (deployable files)

View 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) {}

View 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);
};