From 1ced1672d7e0638df12544fb5e7dc18695000643 Mon Sep 17 00:00:00 2001 From: Sam Carlberg Date: Thu, 8 Oct 2015 17:53:29 -0400 Subject: Updated SmartDashboard to use the new mDNS naming scheme (roboRIO-team-frc.local) Change-Id: Ib318424e74c24a546ca32242b7281907bb7281f4 --- smartdashboard/src/edu/wpi/first/smartdashboard/robot/Robot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- cgit v1.2.3-54-g00ecf