
基于ESP32C3的三色墨水屏桌面日历
简介
基于合宙ESP32-C3单片机的黑白红/黑白黄三色墨水屏天气日历,可当电子相册,可拆卸为钥匙扣
简介:基于合宙ESP32-C3单片机的黑白红/黑白黄三色墨水屏天气日历,可当电子相册,可拆卸为钥匙扣开源协议
:MIT License
描述
项目灵感来自 SMALL_DA 的 ESP32C3墨水屏摆件
本文代码均来源于网络,在其基础上进行修改。如有侵权,立即删除。
硬件
三色墨水屏,分辨率250x122
在咸鱼上有两种墨水屏:
-
一种是UC8151c主控的(即本项目使用的)
-
一种是SSD1675B/SSD1680主控的,常见的型号有
HINK-E0213A22
。
为了黑白红/黄三色的显示效果正确,请使用我写的GxEPD2库的驱动:Zxis233/GxEPD2 at Modified_213_Driver
- 对于
UC8151c
主控:GxEPD2_3C display(GxEPD2_213_my(/*CS=5*/ 7, /*DC=*/4, /*RST=*/5, /*BUSY=*/6));
- 对于
SSD1675B/SSD1680
主控:GxEPD2_3C display(GxEPD2_213_Z98c(/*CS=5*/ 7, /*DC=*/4, /*RST=*/5, /*BUSY=*/6));
对于SSD1675B/SSD1680
主控,边框颜色设置仅在初始化屏幕时生效,后续程序内无法改变。欢迎与我讨论代码,共同进步。
对于UC8151c
主控,边框颜色设置正常。
买到的屏幕排线可能是24Pin,也可能是26Pin。如为前者,请购买24Pin的FPC排座进行焊接;如为后者,需背部贴透明胶后将排线剪窄,方可插入26Pin的FPC排座并不脱落。
建议使用后翻盖上下接的FPC排座,兼容性更好。
驱动板
驱动板的BOM与原项目一致,位号及引脚定义未做改变。
为了保证合适的拔插效果,建议PCB厚度选择为1.2mm。
合宙ESP32-C3开发版
经测试,标准版和简约版均可使用。若想串口输出日志,推荐使用标准版。
简约版也可使用串口打印日志,但有概率出现错误。方法:合宙ESP32-C3简约版使用串口打印调试信息 | Esing的小站
软件
以下基于VsCode+PlatformIO进行开发。配置过程在此不做赘述。
请务必提前修改好PlatformIO中对于ESP32-C3的引脚定义!
文件位置:"C:\Users\你的用户名\.platformio\packages\framework-arduinoespressif32\variants\AirM2M_CORE_ESP32C3\pins_arduino.h"
static const uint8_t SDA = 4; // 8
static const uint8_t SCL = 5; // 9
static const uint8_t SS = 7;
static const uint8_t MOSI = 3; // 6
static const uint8_t MISO = 10; // 5
static const uint8_t SCK = 2; // 4
PlatformIO项目配置文件
; platformio.ini
;
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:airm2m_core_esp32c3]
platform = espressif32
board = airm2m_core_esp32c3
framework = arduino
board_build.f_cpu = 160000000L
board_build.f_flash = 80000000L
board_build.flash_mode = dio
board_build.filesystem = littlefs
board_build.partitions = my_no_ota.csv
upload_speed = 921600
monitor_speed = 115200
monitor_filters =
default ; Remove typical terminal control codes from input
time ; Add timestamp with milliseconds for each new line
colorize ; Log data to a file “platformio-device-monitor-*.log” located in the current working directory
lib_extra_dirs = C:/Users/Zyx/Documents/Arduino/libraries
build_flags=
; -D ARDUINO_USB_MODE=1
; -D ARDUINO_USB_CDC_ON_BOOT=1
自定义的分区表my_no_ota.csv
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xe000, 0x2000,
app0, app, ota_0, 0x10000, 0x280000,
spiffs, data, spiffs, 0x290000,0x100000,
coredump, data, coredump,0x3A0000,0x60000,
将附件提供的压缩包解压,使用VsCode打开,并重命名src/Config.h.example
为Config.h
,填写配置信息即可编译。
想自定义图片?
这里使用大连佳显提供的ImageToEPD软件:
ImageToEPD v4.2
图片分辨率需要为250x122。
生成字模后,将内容粘贴到Myimg文件内,之后就可以调用了!
如果你的图片左右相反了,记得在取模时上下翻转图片!
心知天气密钥
要想正常获取天气,需要在单片机连接到WIFI后:
- 进入配网模式查看本地IP
- 手机访问单片机IP地址
- 填写心知天气密钥并提交
当然,你也可以将密钥写死在代码里。
食用说明
Zxis233/My213EPD: 使用ESP32C3开发的2.13寸三色墨水屏摆件/钥匙扣
钥匙扣模式
在PCB顶端预留了孔,可穿入挂绳。为了避免背面元器件损坏,建议使用环氧树脂/硅橡胶/三防漆对背面的元器件进行密封保护:
图片预览
设计图

BOM


评论