Skip to content

Instantly share code, notes, and snippets.

@gjdv
gjdv / change_wifi.py
Created December 9, 2022 19:16
Script to change the wifi settings of a Daikin airco (tested on FTXA)
import requests
default_ip = '192.168.127.1'
def do_get(url):
try:
resp = requests.get(url)
except Exception as e:
raise Exception("Could not reach url: %s" % url) from e