Search found 6 matches

by arg
Sat Jul 30, 2022 8:36 am
Forum: General Discussion and Questions
Topic: I cannot find upip
Replies: 3
Views: 2504

Re: I cannot find upip

Good evening :) Pyboard series D MicroPython v1.19.1 on 2022-06-18; PYBD-SF2W with STM32F722IEK I'm clearly not understanding a lot... The file system: is this the PYBFLASH directory shown in file explorer? ( boot,main,README etc ) To install pip do I copy the upip and upip_utafile files to it? Havi...
by arg
Sat Jul 16, 2022 1:03 pm
Forum: General Discussion and Questions
Topic: I cannot find upip
Replies: 3
Views: 2504

I cannot find upip

Hello :) Pyboard series D MicroPython v1.19.1 on 2022-06-18; PYBD-SF2W with STM32F722IEK I want to use the module aioble for bluetooth functions. upip/pip are not on my distribution, see below What I actually want to do is get the names of bluetooth devices within range ( i think i have hex IDs ) >>...
by arg
Tue Jul 12, 2022 10:43 am
Forum: Pyboard D-series
Topic: asyncio, server does not call handle_client
Replies: 7
Views: 25235

Re: asyncio, server does not call handle_client

Hi Jimmo :) Yipeee :) Here is my code that receives TCP ( SOCK_STREAM ) sends a message to a different IP ( non-asyncio ) and then responds to the client. # https://stackoverflow.com/questions/48506460/python-simple-socket-client-server-using-asyncio async def handle_client(reader,writer): print('in...
by arg
Mon Jul 11, 2022 8:33 am
Forum: Pyboard D-series
Topic: asyncio, server does not call handle_client
Replies: 7
Views: 25235

Re: asyncio, server does not call handle_client

Hi Jimmo :) # -------------------------------------------------------------------------------- # https://stackoverflow.com/questions/48506460/python-simple-socket-client-server-using-asyncio async def handle_client(reader:StreamReader,writer :StreamWriter): print('in handle_client') request = None w...
by arg
Mon Jul 11, 2022 8:01 am
Forum: Pyboard D-series
Topic: asyncio, server does not call handle_client
Replies: 7
Views: 25235

Re: asyncio, server does not call handle_client

Hi Jimmo, thanks for the prompt response, ill try your solution shortly.

I was completely at a stop, it did not occur to me that an exception would not be forthcoming

Regards Andrew
by arg
Sat Jul 09, 2022 1:24 pm
Forum: Pyboard D-series
Topic: asyncio, server does not call handle_client
Replies: 7
Views: 25235

asyncio, server does not call handle_client

Hello :) It is likely that I am a dummy. Pyboard series D MicroPython v1.19.1 on 2022-06-18; PYBD-SF2W with STM32F722IEK uasyncio version 3 wifi seems to work as expected When a simple string is sent by another application to the server ( DGRAM) : - no faults are displayed in the terminal window for...