上一页 1 2 3 4 5 6 7 8 ··· 23 下一页
摘要: <repositories> <repository> <id>public</id> <name>aliyun nexus</name> <url>https://maven.aliyun.com/repository/public/</url> <releases> <enabled>true< 阅读全文
posted @ 2023-04-03 13:46 LiuChengloong 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 在 linux 系统下命令行使用 clash 的一些心得 主要就是以下 2 个开源项目: https://github.com/Dreamacro/clash https://github.com/haishanh/yacd 心得 clash 支持多种类型的代理。yacd 是配置 clash 的 w 阅读全文
posted @ 2023-03-26 18:49 LiuChengloong 阅读(3) 评论(0) 推荐(0) 编辑
摘要: export GOPROXY=https://goproxy.cn,direct export GOROOT=/usr/local/go export GOPATH=$HOME/go export GOBIN=$GOPATH/bin export PATH=$PATH:$GOROOT/bin:$GO 阅读全文
posted @ 2023-03-23 15:31 LiuChengloong 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 启动应用非常简单,如果你习惯使用 Docker,可以执行: docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare 阅读全文
posted @ 2023-03-23 09:38 LiuChengloong 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ESP32C3 有 4M 的 flash,但是在 PlatformIO 选择 esp32-c3-devkitm-1 开发板的时候只默认分配了 1310720 byte,还有很大一部分没有使用。 解决方案一: 在工程文件夹中建一个.csv的文件,比如 partition.csv 这个文件。 接着在 p 阅读全文
posted @ 2023-03-10 10:45 LiuChengloong 阅读(743) 评论(0) 推荐(1) 编辑
摘要: 在使用 xrdp 的过程中总是会遇到链接黑屏的情况,这里推荐一个 xrdp 安装脚本,使用该脚本可以解决这个问题。 如果已经安装 xrdp 请先卸载。 sudo apt remove xrdp 提供脚本的网站:http://www.c-nergy.be/products.html 这里提供 v1.4 阅读全文
posted @ 2023-03-09 15:05 LiuChengloong 阅读(586) 评论(0) 推荐(1) 编辑
摘要: docker run --name=minio-test \ -d \ -p 19000:9000 -p 19001:9001 \ -v /home/cl/minio:/data \ -e "MINIO_ROOT_USER=admin" \ -e "MINIO_ROOT_PASSWORD=12345 阅读全文
posted @ 2023-02-28 16:03 LiuChengloong 阅读(14) 评论(0) 推荐(0) 编辑
摘要: // 引入定时器库 #include <Ticker.h> // 实例化定时器对象 Ticker time1; Ticker time2; Ticker time3; Ticker time4; void time1_callback() { Serial.println("时间到,执行我,我是定时 阅读全文
posted @ 2023-02-16 13:47 LiuChengloong 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 原因 PlatformIO 内建的 python 无法下载 GitHub 上的资源,或者其他国外的资源。 最推荐 方法 4,如果看不懂方法4,那么依次尝试 3 2 1 方法 解决办法 1 [配置国内下载源] 完全关闭 vscode,完全关闭 vscode,完全关闭 vscode 打开任务管理器,把 阅读全文
posted @ 2023-02-13 16:37 LiuChengloong 阅读(4191) 评论(0) 推荐(1) 编辑
摘要: arduino-esp32 github 地址: https://github.com/espressif/arduino-esp32 Arduino IDE 添加 esp32 开发板 文件 > 首选项 > 其他开发板管理地址 填写:https://raw.githubusercontent.com 阅读全文
posted @ 2023-02-07 15:33 LiuChengloong 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 23 下一页