From be3419148849474b3cddfb54f7181e779b555df2 Mon Sep 17 00:00:00 2001 From: Jonathan Roemer Date: Mon, 27 Apr 2015 19:05:35 -0400 Subject: [PATCH] Fixes for thermostatdevice --- src/thermostat/ThermostatDevice.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thermostat/ThermostatDevice.java b/src/thermostat/ThermostatDevice.java index 474bbaa..7e14db3 100644 --- a/src/thermostat/ThermostatDevice.java +++ b/src/thermostat/ThermostatDevice.java @@ -96,7 +96,7 @@ public void sendCurrentTemp(String currentTemp, String serverIP) throws IOExcept // Sends the current temperature on port sendCurrentTempPORT // Open a sending port // Replace this with the serverIP string if we get multicast working - Socket sender = new Socket("192.168.1.2", 7000); + Socket sender = new Socket("192.168.0.3", 7000); try { while (true) { // Instantiate a printwriter so we can write to the output stream