【】 homepod mini升級到16.4後,delay時間由4秒變為7秒 【解決步驟】 open ha cli then type login it should give you a prompt # type: docker exec -it $(docker ps -f name=homeassistant -q) bash now you should be inside the homeassistant container open the pyatv file: vi /usr/local/lib/python3.10/site-packages/pyatv/support/http.py change the timeout from 4 to 10 before: async with async_timeout.timeout(4): after: async with async_timeout.timeout(10): restart your homeassistant and you should be good to go! 【參考文章】 https://github.com/home-assistant/core/issues/88014
最近DD-WRT的DHCP突然掛掉,決定改用Open-WRT 1.改為TP-Link原廠韌體- ArcherC7v2_webrevert.rar DD-WRT TP-Link Archer C7 (AC1750) 2.x 2.登錄192.168.0.1(admin/admin),升級Open-WRT(openwrt-22.03.2-ath79-generic-tplink_archer-c7-v2-squashfs-factory) https://openwrt.org/toh/tp-link/archer-c5-c7-wdr7500 3.登錄192.168.1.1 4.停用IPv6 uci set 'network.lan.ipv6=0' uci set 'network.wan.ipv6=0' uci set 'dhcp.lan.dhcpv6=disabled' /etc/init.d/odhcpd disable uci commit uci -q delete dhcp.lan.dhcpv6 uci -q delete dhcp.lan.ra uci commit dhcp /etc/init.d/odhcpd restart uci set network.lan.delegate="0" uci commit network /etc/init.d/network restart /etc/init.d/odhcpd disable /etc/init.d/odhcpd stop uci -q delete network.globals.ula_prefix uci commit network /etc/init.d/network restart