USBSerial AIO
Here, we need to instantiate the class passing in a transport_type of 1. This parameter value enables the serial transport.
import sys
import asyncio
# IMPORT THE API
from telemetrix_uno_r4.wifi.telemetrix_uno_r4_wifi_aio import telemetrix_uno_r4_wifi_aio
# An async method for running your application.
# We pass in the instance of the API created below .
async def my_app(the_board):
# Your Application code
# get the event loop
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
# instantiate telemetrix_aio
board = telemetrix_uno_r4_wifi_aio.TelemetrixUnoR4WiFiAio(transport_type=1)
try:
# start the main function
loop.run_until_complete(my_app(board))
except KeyboardInterrupt:
try:
loop.run_until_complete(board.shutdown())
except:
pass
sys.exit(0)