diff options
author | Sam Carlberg <sam.carlberg@gmail.com> | 2015-10-08 17:53:29 -0400 |
---|---|---|
committer | Sam Carlberg <sam.carlberg@gmail.com> | 2015-10-08 17:53:29 -0400 |
commit | 1ced1672d7e0638df12544fb5e7dc18695000643 (patch) | |
tree | 77dd714055eb015df8db037051987df91a1ec70f | |
parent | ed1fb5289e62a0d3d86c92f1b6a76f07574784af (diff) |
Updated SmartDashboard to use the new mDNS naming scheme (roboRIO-team-frc.local)
Change-Id: Ib318424e74c24a546ca32242b7281907bb7281f4
-rw-r--r-- | smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java b/smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java index d2cf23e..3d2a6c8 100644 --- a/smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java +++ b/smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java @@ -55,7 +55,7 @@ public class Robot { if (host != "") { // Use the given host } else if (_usemDNS) { - host = "roboRIO-" + _team + ".local"; + host = "roboRIO-" + _team + "-frc.local"; } else { host = "10." + (_team / 100) + "." + (_team % 100) + ".2"; } |