kopia lustrzana https://github.com/espressif/esp-idf
20 wiersze
571 B
Python
20 wiersze
571 B
Python
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from utils import hex_str_to_bytes, str_to_bytes
|
|
|
|
from .transport import Transport
|
|
|
|
|
|
class Transport_Console(Transport):
|
|
|
|
async def send_data(self, path, data, session_id=0):
|
|
print('Client->Device msg :', path, session_id, str_to_bytes(data).hex())
|
|
try:
|
|
resp = input('Enter device->client msg : ')
|
|
except Exception as err:
|
|
print('error:', err)
|
|
return None
|
|
return hex_str_to_bytes(resp)
|