MaixPy-v1 icon indicating copy to clipboard operation
MaixPy-v1 copied to clipboard

MicroPython for K210 RISC-V, let's play with edge AI easier

Results 129 MaixPy-v1 issues
Sort by recently updated
recently updated
newest added

About this question, here is a unified reply. We need to see this place where one is the definition and load the configuration. https://github.com/sipeed/MaixPy/blob/master/components/micropython/port/builtin_py/board.py If you don't provide the configuration,...

good first issue
usage

Could it be possible to send a picture grabbed from the laptop webcam to the Maix Dock via the UART USB-C connection? If yes, what is the maximum bitrate achievable?...

usage

I would like to interface with a RPI, so that RPI sends image data via SPI to Maix board, Maix board does face recognition and sends back result to RPI....

enhancement

Hi, How to improve the video playback performance? Is it possible to play at least 25fps? Thanks!

The maixpy_k210_min builds but most in the "projects" core dump like this.. wolf@wolf-800-050se:~/MaxiBit/MaixPy/projects/maixpy_k210$ python3 project.py build -- SDK_PATH:/home/wolf/MaxiBit/MaixPy maixpy build now -- SDK_PATH:/home/wolf/MaxiBit/MaixPy -- PROJECT_PATH:/home/wolf/MaxiBit/MaixPy/projects/maixpy_k210 -- Find component: /home/wolf/MaxiBit/MaixPy/components/boards --...

while uart init before sensor init,uart can receive data ,but can send data

question

I've build a Haar Cascade and converted the cascade to a .cascade file using [cascade_convert.py](https://github.com/openmv/openmv/blob/master/ml/haarcascade/cascade_convert.py). When I try to load the cascade from sd or flash I get a core...

bug
openmv

如图,设置系统时间后无法生效 ![无标题](https://user-images.githubusercontent.com/48824787/101237117-3b12ed80-3711-11eb-9fb4-a58a7c025010.png)

usage

``` import _thread import time import sensor, lcd def func(name): while 1: print("hello {}".format(name)) time.sleep(1) sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QVGA) sensor.run(1) sensor.skip_frames() _thread.start_new_thread(func,("1",)) lcd.init(freq=15000000) while(True): lcd.display(sensor.snapshot()) ``` 在sensor run后使用_thread.start_new_thread启动新线程无效

Looking through the examples it is unclear whether it is possible to access the ADCs via micropython. Does the MaxiPy have access to the read_timed function found on some boards...