mirror of
https://github.com/esphome/esphome.git
synced 2024-11-15 03:28:12 +01:00
tweaks
This commit is contained in:
parent
b75703986d
commit
8132b40580
1 changed files with 8 additions and 4 deletions
|
@ -1,10 +1,13 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import gzip
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import io
|
||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
import socket
|
import socket
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import gzip
|
|
||||||
|
|
||||||
from esphome.core import EsphomeError
|
from esphome.core import EsphomeError
|
||||||
from esphome.helpers import is_ip_address, resolve_ip_address
|
from esphome.helpers import is_ip_address, resolve_ip_address
|
||||||
|
@ -188,7 +191,9 @@ def send_check(sock, data, msg):
|
||||||
raise OTAError(f"Error sending {msg}: {err}") from err
|
raise OTAError(f"Error sending {msg}: {err}") from err
|
||||||
|
|
||||||
|
|
||||||
def perform_ota(sock, password, file_handle, filename):
|
def perform_ota(
|
||||||
|
sock: socket.socket, password: str, file_handle: io.IOBase, filename: str
|
||||||
|
) -> None:
|
||||||
file_contents = file_handle.read()
|
file_contents = file_handle.read()
|
||||||
file_size = len(file_contents)
|
file_size = len(file_contents)
|
||||||
_LOGGER.info("Uploading %s (%s bytes)", filename, file_size)
|
_LOGGER.info("Uploading %s (%s bytes)", filename, file_size)
|
||||||
|
@ -285,8 +290,7 @@ def perform_ota(sock, password, file_handle, filename):
|
||||||
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
|
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
|
||||||
duration = time.perf_counter() - start_time
|
duration = time.perf_counter() - start_time
|
||||||
|
|
||||||
_LOGGER.info("Upload took %.2f seconds", duration)
|
_LOGGER.info("Upload took %.2f seconds, waiting for result...", duration)
|
||||||
_LOGGER.info("Waiting for result...")
|
|
||||||
|
|
||||||
receive_exactly(sock, 1, "receive OK", RESPONSE_RECEIVE_OK)
|
receive_exactly(sock, 1, "receive OK", RESPONSE_RECEIVE_OK)
|
||||||
receive_exactly(sock, 1, "Update end", RESPONSE_UPDATE_END_OK)
|
receive_exactly(sock, 1, "Update end", RESPONSE_UPDATE_END_OK)
|
||||||
|
|
Loading…
Reference in a new issue