This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Arduino_LED_Matrix.h" // Include the LED_Matrix library | |
ArduinoLEDMatrix matrix; | |
struct Animation { | |
const uint32_t (*sequence)[4]; | |
size_t size; | |
}; | |
Animation animations[] = { | |
{LEDMATRIX_ANIMATION_STARTUP, sizeof LEDMATRIX_ANIMATION_STARTUP}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板 | |
; https://wulu.zone/posts/chatgpt-ahk | |
; | |
; Ctrl+Shift+C 的热键绑定 | |
^+c:: | |
; 复制选中文本到剪贴板 | |
Send, ^c | |
; 等待剪贴板内容更新 | |
ClipWait |