Skip to content

Commit

Permalink
Fixes for thermostatdevice
Browse files Browse the repository at this point in the history
  • Loading branch information
pid1 committed Apr 27, 2015
1 parent 5486946 commit be34191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thermostat/ThermostatDevice.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit be34191

Please sign in to comment.