MaixPy_DOC icon indicating copy to clipboard operation
MaixPy_DOC copied to clipboard

Documentation of MaixPy

Results 20 MaixPy_DOC issues
Sort by recently updated
recently updated
newest added

I use a maix bit as a slave and run the following code on it. ```python from machine import I2C count = 0 def on_receive(data): print("on_receive:",data) def on_transmit(): count =...

In my project I am trying to stream audio data through a socket. Can you give me additional details about the bytearray data retrieved from the audio object. Thank You

how to convert the image obtained by the sensor to the input format required by the model? the size of the image obtained by the sensor is 320x240, and using...

![截图](https://gitee.com/reiholdchen/Pic/raw/master/Maixpyerror.png)

I'm using the MAiX DOCK. Camera : OV5640 Firmware version : maixpy_v0.6.2_11_g912a857ce.bin K-model : face_model_at_0x300000.kfpkg Attempting to execute default code(demo_find_face.py) results in a "sensor_hmirror= False" timeout error. Can't I use...

I just received my Amigo. Its a great piece of hardware, really impressive. The problem is that i cannot find any information on how to use it. I have a...

I cannot seem to disable the backlight or turn off the screen on the Amigo. Calls to lcd.set_backlight and get_backlight don't seem to work. I see ILI9486 has pin 23...

MaixPy可以支持@micropython.native,@micropython.viper修饰器吗?或者类似功能,代码效率太低

I followed the code in https://maixpy.sipeed.com/en/libs/machine/i2c.html#example-3-slave-mode and found out it is causing error when trying to read data from master because count is not declared as global variable (as declared...

https://maixpy.sipeed.com/en/#lets-get-started ``` import sensor import image import lcd lcd.init() sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QVGA) sensor.run(1) while True: img=sensor.snapshot() lcd.display(img) ``` This has incorrect pixformat - the actual format used in the C...