尝试搭建K210的Micropython开发环境(Win10)-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

楼主: eagler8

尝试搭建K210的Micropython开发环境(Win10)

[复制链接]
 楼主| 发表于 2020-3-28 09:56 | 显示全部楼层
15.jpg
 楼主| 发表于 2020-3-28 09:57 | 显示全部楼层
16.jpg
 楼主| 发表于 2020-3-28 10:12 | 显示全部楼层
#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之七:图形与hello maixpy

[mw_shl_code=python,true]#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之七:图形与hello maixpy

import lcd, time
import image

bg = (236,36,36)
lcd.init(freq=15000000)
lcd.direction(lcd.YX_RLDU)

img = image.Image()
img.draw_string(60, 100, "hello maixpy", scale=2)
img.draw_rectangle((120,120,30,30))
img.draw_circle((150,140, 80))
img.draw_cross((250,40))
img.draw_arrow((250,200,20,200), color=(236,36,36))
lcd.display(img) [/mw_shl_code]

 楼主| 发表于 2020-3-28 10:12 | 显示全部楼层
17.jpg
 楼主| 发表于 2020-3-28 10:13 | 显示全部楼层
18.jpg
 楼主| 发表于 2020-3-28 10:32 | 显示全部楼层
#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之八:碰碰球演示

[mw_shl_code=python,true]#尝试搭建K210的Micropython开发环境(Win10)
#实验程序之八:碰碰球演示

import image, lcd

lcd.init(freq=20000000)

i = 0
dir = 1

while(True):
    img = image.Image(copy_to_fb=1)
    img.clear()
    img.draw_rectangle(i,50,50,50)
    lcd.display(img)
   
    if dir:
        i += 5
        if i==270:
           dir = 0
    else:
        i -= 5
        if i==0:
            dir = 1[/mw_shl_code]

 楼主| 发表于 2020-3-28 10:39 | 显示全部楼层
26.gif
发表于 2020-4-10 15:58 | 显示全部楼层
(*@ο@*) 哇噻,大佬好牛好牛,小弟跪拜
 楼主| 发表于 2020-4-11 05:38 | 显示全部楼层
lhx05100510 发表于 2020-4-10 15:58
(*@ο@*) 哇噻,大佬好牛好牛,小弟跪拜

谢谢鼓励,多交流
发表于 2020-4-11 21:05 | 显示全部楼层
好帖没人,可惜了
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-28 01:17 , Processed in 0.081194 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表