BrotherHai

Results 2 issues of BrotherHai

https://gitee.com/rao_she/live2d_models_collect加载了这个里面的模型 ![image](https://github.com/JimHans/live2d-kanban-desktop/assets/50613992/5b061309-797b-4c90-9aa0-f12cc6cdfa00)

bug
开发中

from mpython import* import json import urequests # urequests模块是一个用于网络访问的模块 WIFI_SSID = "Tenda_888" WIFI_PASS = "88888888" mywifi=wifi() mywifi.connectWiFi(WIFI_SSID, WIFI_PASS) #连接 WiFi 网络 url_ip ="http://ip-api.com/json/" #添加请求地址 rsp=urequests.get(url_ip) #发送get请求 ipJson=rsp.text ipDict=json.loads(ipJson) oled.DispChar('国家:%s' %...