You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
在maxipy0.5上,如果连接Jupyter可以正常使用requests或者mqtt库,但是脱机之后在main.py里相同的代码就无法运行,即使这会使用充电宝供电也不行,使用手机2.4G热点也不可以
import requests
from maix import display, image
r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
hello_img = image.Image().new(size = (240, 240), color = (255, 0, 0), mode = "RGB") #创建一张红色背景图
hello_img.draw_string(30, 115, str(r.status_code), scale = 1.0,color = (255, 255, 255), thickness = 1) #在红色背景图上写下hello world
display.show(hello_img)
The text was updated successfully, but these errors were encountered: