-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
723 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
loggythings/public/app/customer/customerDetailController.js
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
loggythings/repo/com/robostangs/loggythings/LoggyThings-Java/1.0/DashboardPutCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)); | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.