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