MannixWong / MaixPy

A Micropython env for Sipeed Maix boards

Home Page:https://maixpy.sipeed.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MaixPy




Let's Sipeed up, Maximize AI's power!

MaixPy, makes AIOT easier!

Maixpy is designed to make AIOT programming easier, based on the Micropython syntax, running on a very powerful embedded AIOT chip K210.

Simple code

Find I2C devices:

from machine import I2C

i2c = I2C(I2C.I2C0, freq=100000, scl=28, sda=29)
devices = i2c.scan()
print(devices)

Take picture:

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)

Release

See Releases page

Documentation

Doc refer to maixpy.sipeed.com

Build From Source

See build doc

License

See LICENSE file

About

A Micropython env for Sipeed Maix boards

https://maixpy.sipeed.com

License:Other


Languages

Language:C 88.9%Language:C++ 4.7%Language:Python 3.9%Language:Objective-C 1.2%Language:Makefile 0.7%Language:Assembly 0.5%Language:Shell 0.1%Language:CMake 0.0%