Micropython ESP32-S3 ProS3 library install #9680
-
I got a new ESP32-S3 ( UM ProS3) and installed latest micropython v1.19.1. ❯ mpremote mip install aioble
Install aioble
Installing aioble (latest) from https://micropython.org/pi/v2 to /lib
Installing: /lib/aioble/__init__.mpy
Installing: /lib/aioble/core.mpy
Installing: /lib/aioble/device.mpy
Installing: /lib/aioble/peripheral.mpy
Installing: /lib/aioble/server.mpy
Done Seems the install was successful. But after the import, when I run, >>> import aioble
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: incompatible .mpy file Not sure what I am doing wrong. Any help is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
mip will be in the next release.
Thanks for reporting this! I have just fixed the underlying bug -- #9681. We will need to merge this and update the mip index. In the meantime, you can either:
|
Beta Was this translation helpful? Give feedback.
mip will be in the next release.
Thanks for reporting this! I have just fixed the underlying bug -- #9681. We will need to merge this and update the mip index.
In the meantime, you can either:
mpremote mip install --no-mpy aioble
. You shouldmpremote rm /lib/aioble/__init__.mpy
(and the others) first.