Skip to content

Update to REVLib 2023.1.3 #46

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

Merged
merged 2 commits into from
Feb 3, 2023
Merged
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
1 change: 0 additions & 1 deletion examples/color_match/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def robotInit(self):
self.colorMatcher.addColorMatch(self.yellowTarget)

def robotPeriodic(self):

# The method GetColor() returns a normalized color value from the sensor and can be
# useful if outputting the color to an RGB LED or similar. To
# read the raw color, use GetRawColor().
Expand Down
1 change: 0 additions & 1 deletion examples/read_rgb_values/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def robotInit(self):
self.colorSensor = ColorSensorV3(wpilib.I2C.Port.kOnboard)

def robotPeriodic(self):

# The method getColor() returns a normalized color value from the sensor and can be
# useful if outputting the color to an RGB LED or similar. To
# read the raw color, use getRawColor().
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ base_package = "rev"
artifact_id = "REVLib-driver"
group_id = "com.revrobotics.frc"
repo_url = "https://maven.revrobotics.com"
version = "2023.1.2"
version = "2023.1.3"
libs = ["REVLibDriver"]

[tool.robotpy-build.static_libs."revlib".maven_lib_download]
artifact_id = "REVLib-cpp"
group_id = "com.revrobotics.frc"
repo_url = "https://maven.revrobotics.com"
version = "2023.1.2"
version = "2023.1.3"
libs = ["REVLib"]

[tool.robotpy-build.wrappers."rev"]
Expand Down
1 change: 0 additions & 1 deletion tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import subprocess

if __name__ == "__main__":

root = abspath(dirname(__file__))
os.chdir(root)

Expand Down