Issue regarding install libraries in alif devkit board. #17430
Replies: 4 comments 1 reply
-
mpremote is meant to run at the PC, not at the board. mpremote can be used for various tasks, like running a script, copying files form PC to board or installing files from the library to the board. To run a file called script.py, either
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi, Thank you. |
Beta Was this translation helpful? Give feedback.
-
A good source of all kinds of libraries is Awsome MicroPython https://awesome-micropython.com/, although the sheer amount of items may be confusing. Some examples for sensors are as well in the MicroPython lib itself. https://github.com/micropython/micropython-lib/tree/master |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,

We flashed micropython in the Alif-Devkit .Can you just help us how we run examples (like blinky.py).
Now we stuck in installing libraries, refer the attached below image.
Because micropython runs properly .so tell us how can we run the below example
`
Blinky example
import time
from machine import LED
led = LED("LED_BLUE")
while True:
led.on()
time.sleep_ms(500)
led.off()
time.sleep_ms(500)
`
Thankyou
Beta Was this translation helpful? Give feedback.
All reactions