esp32c3刷入Micropython
esp32c3刷入Micropython教程
1234reg query "HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM" # 查看当前串口esptool.py --chip esp32-c3 --port COM10 erase_flashesptool.py --chip ESP32-C3 --port COM10 --baud 460800 write_flash -z 0x0 f:\esp32\esp32c3-20220117-v1.18.bin
1234567891011from machine import Pin, I2Cimport timeled1=Pin(12,Pin.OUT)led2=Pin(13,Pin.OUT)while True: led1.on() time.sleep(0.1) led1.off() led2.on() time.sleep(0.1) led2.off()
作者:天与地-谦信 https://www.bilibili.co ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
服务器安装清单
服务器安装清单
123456789101112131415161718# ubuntu 安装宝塔面板,查看文件/证书申请/管理项目方便https://www.bt.cn/new/download.html# golang运行环境https://go.dev/doc/install# 安装Gitapt-get update -yapt-get upgrade -y# 修改端口sudo vim /etc/ssh/sshd_config添加Port 9996btgit
如何在Linux配置环境变量
12echo 'export PATH=$PATH:/usr/local/git/bin' >> /etc/bashrc
Git使用指南
每次都要重新查,不如记下来
123456789# 添加所有文件到暂存区git add .git remote add origin git@github.com:SuInk/resin-esp32c3.git* 设置提交说明git commit -m "update"# 推送到主分支git push -u origin main
如果你之前没配置过Git12345678910111213141516git config --global user.name "SuInk"git config --global user.email "xilei084@qq.com"# 生成公钥私钥,在github设置里填写ssh-keygen -t rsa -C "xilei0804@qq.com"# 设置默认初始化分支为maingit config --global init.defaultBranch main# 重命名分支git branch -m master main# 推送至远程仓库git push -u ...
esp32c3 实现显示原神树脂功能(支持天暗息屏)
做了一个显示原神树脂的小屏幕
效果展示
需要材料
合宙esp32c3开发板 https://m.tb.cn/h.fEFFM5V
1.8寸tft屏幕(建议买管脚焊好的),可以在合宙店里买 https://m.tb.cn/h.fvxt3IQ
光敏传感器(可选)
杜邦线若干(至少9根母对母)
电焊笔一支
typec数据线一条
安装步骤
下载arduino IDE
打开微软商店(microsoft store) ,下载arduino IDE
打开arduino,点击 文件->首选项->附加开发板管理器地址 输入 https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json 点击好点击 工具 开发板选择ESP32C3 Dev Module , Flash Mode选DIO,端口可以在控制面板->设备和打印机查看(随便选一个能编译成功的也可),现在arduino IDE就配置好了。
将esp32c3通过数据线连接电脑,屏幕通过杜邦线连接 ...
用OneDrive搭建网盘系统
作者的文档很仔细.
但是没怎么提client_id和client_screat😅这就难倒我了,我几个月前才刚知道怎么安装node,知识全是百度的!!!但是我仔细阅读作者您的文档,点了几个超链接看到了这个又根据我六级英语水平的阅读理解翻到了这个终于让我得到了client_id和client_screat😊对了,在这里创建client_id的时候一定要记得填入redirect_uri 即 http://localhost:3000 ,别问我怎么知道的!!!我的网盘网址是https://drive.suink.cn, 部署在了阿里云服务器最后感谢作者,作者很可爱😉
朋友
友情链接
网站
网站
网站
SuInk
单元格
单元格
单元格
单元格
单元格
申请格式以我的网站为例,给我发邮件(leisurenot@outlook.com)即可
站名:SuInk链接:https://suink.cn描述:懒得要死的作者
我会不定时地对失效的网站进行清理,请尽量确保自己的网站能够长期正常访问
获取本周日期
获取本周日期小程序代码
1234567891011121314151617181920212223242526272829const current_date = date.getDate(); // 获取本 日 const current_month = date.getMonth() + 1; // 获取本 月 const current_year = date.getFullYear(); // 获取本 年function getWeekDay(dateString) { let dateStringReg = /^\d{4}[/-]\d{1,2}[/-]\d{1,2}$/; if (dateString.match(dateStringReg)) { let presentDate = new Date(dateString), today = presentDate.getDay() != ...
聊天界面
仿造微信聊天界面的Android JAVA代码
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout ...