Skip to content

Commit

Permalink
ignore loggythings2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ardusa committed Jan 3, 2024
1 parent c25800d commit 077ba68
Show file tree
Hide file tree
Showing 39 changed files with 723 additions and 321 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 1 addition & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"maven.view": "flat",
"java.project.sourcePaths": [
"loggythings/latestRelease",
"loggythings/LoggyThings",
"loggythings/src/main/java/com/robostangs/loggythings"
"loggythings/repo"
]
}
Binary file modified loggythings/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions LoggyThings.json → loggythings/LoggyThings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"fileName": "LoggyThings.json",
"name": "LoggyThings",
"version": "1.0",
"frcYear": "2024",
"frcYear": 2024,
"mavenUrls": [
"https://ardusa.github.io/loggythings/src"
"https://ardusa.github.io/loggythings/repo"
],
"jsonUrl": "https://ardusa.github.io//LoggyThings.json",
"javaDependencies": [
Expand Down
55 changes: 0 additions & 55 deletions loggythings/pom.xml

This file was deleted.

7 changes: 0 additions & 7 deletions loggythings/public/app/app.js

This file was deleted.

26 changes: 0 additions & 26 deletions loggythings/public/app/customer/customer.html

This file was deleted.

36 changes: 0 additions & 36 deletions loggythings/public/app/customer/customerController.js

This file was deleted.

15 changes: 0 additions & 15 deletions loggythings/public/app/customer/customerDetailController.js

This file was deleted.

22 changes: 0 additions & 22 deletions loggythings/public/app/customer/customerService.js

This file was deleted.

49 changes: 0 additions & 49 deletions loggythings/public/app/customer/customers.html

This file was deleted.

18 changes: 0 additions & 18 deletions loggythings/public/app/routes.js

This file was deleted.

48 changes: 0 additions & 48 deletions loggythings/public/index.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package com.robostangs.loggythings;

public class DashboardPutCommand extends InstantCommand {
public DashboardPutCommand(String key, boolean value) {
super(() -> SmartDashboard.putBoolean(key, value));
}

public DashboardPutCommand(String key, Boolean[] value) {
super(() -> SmartDashboard.putBooleanArray(key, value));
}

public DashboardPutCommand(String key, boolean[] value) {
super(() -> SmartDashboard.putBooleanArray(key, value));
}

public DashboardPutCommand(String key, Sendable value) {
super(() -> SmartDashboard.putData(key, value));
}

public DashboardPutCommand(Sendable value) {
super(() -> SmartDashboard.putData(value));
}

public DashboardPutCommand(String key, double value) {
super(() -> SmartDashboard.putNumber(key, value));
}

public DashboardPutCommand(String key, Double[] value) {
super(() -> SmartDashboard.putNumberArray(key, value));
}

public DashboardPutCommand(String key, double[] value) {
super(() -> SmartDashboard.putNumberArray(key, value));
}

public DashboardPutCommand(String key, byte[] value) {
super(() -> SmartDashboard.putRaw(key, value));
}

public DashboardPutCommand(String key, String value) {
super(() -> SmartDashboard.putString(key, value));
}

public DashboardPutCommand(String key, String[] value) {
super(() -> SmartDashboard.putStringArray(key, value));
}
}
Loading

0 comments on commit 077ba68

Please sign in to comment.