Hello !!!
I am looking for a working web cosked on esp32 to read and send information to the following server in python
Hello !!!
I am looking for a working web cosked on esp32 to read and send information to the following server in python
import asyncio
import websockets
async def echo(websocket):
async for message in websocket:
print(message)
await websocket.send("left")
async def main():
async with websockets.serve(echo, "192.168.178.69",8084):
await asyncio.Future() # run forever
Hello !!!