Skip to content

WangFengtu1996/MaixPy

 
 

Repository files navigation

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

Micropython env for Sipeed Maix boards

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 88.9%
  • C++ 4.7%
  • Python 3.9%
  • Objective-C 1.2%
  • Makefile 0.7%
  • Assembly 0.5%
  • Other 0.1%