Skip to content

Instantly share code, notes, and snippets.

@eMUQI
eMUQI / display_animations.ino
Created April 18, 2024 01:46
Explore the exciting animations on Arduino UNO R4's LED matrix!
#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},
@eMUQI
eMUQI / GPT-Translate-EN.ahk
Last active September 12, 2023 15:10
AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板
; AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板
; https://wulu.zone/posts/chatgpt-ahk
;
; Ctrl+Shift+C 的热键绑定
^+c::
; 复制选中文本到剪贴板
Send, ^c
; 等待剪贴板内容更新
ClipWait