Skip to content

Commit

Permalink
Change addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
winstonsmith1897 committed Sep 15, 2023
1 parent 31b19e4 commit 386e2ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion temperature_monitor/catch_temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def on_open(ws):

if __name__ == "__main__":
ws = websocket.WebSocketApp(
"ws://domhomassistant.duckdns.org:17898/ws",
"ws://localhost:3000/ws",
on_open=on_open,
on_message=on_message,
on_error=on_error,
Expand Down
2 changes: 1 addition & 1 deletion temperature_monitor/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

data_dict = defaultdict(list)
last_update_time = time.time()
url = "http://146.48.89.28:3000/"
url = "http://localhost:3000/"


def send_data(temp):
Expand Down

0 comments on commit 386e2ec

Please sign in to comment.