一键导入
arduino
Develop Arduino projects avoiding common wiring, power, and code pitfalls.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Develop Arduino projects avoiding common wiring, power, and code pitfalls.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Auto-generated frontmatter
Perform a dual-mode deep reading of any academic paper provided as a PDF attachment or URL. Use this skill when the user requests analysis, close reading, interpretation, or summarization of a scholarly paper. Produce two reports in a single pass: Part A is a rigorous in-depth academic analysis for researchers; Part B distills the core logic and essential value for rapid comprehension.
Use this skill when users need to search academic papers, download research documents, extract citations, or gather scholarly information. Triggers include: requests to "find papers on", "search research about", "download academic articles", "get citations for", or any request involving academic databases like arXiv, PubMed, Semantic Scholar, or Google Scholar. Also use for literature reviews, bibliography generation, and research discovery. Requires OpenClawCLI installation from clawhub.ai.
Ad intelligence & app analytics assistant. Search ad creatives, analyze apps, view rankings, track downloads/revenue, and get market insights. Get your API key at https://www.admapix.com. Triggers: 找素材, 搜广告, 广告素材, 竞品分析, 广告分析, 排行榜, 下载量, 收入分析, 市场分析, 投放分析, App分析, 出海分析, search ads, find creatives, ad spy, ad analysis, app ranking, download data, revenue, market analysis, app intelligence, competitor analysis, ad distribution.
OpenClaw skill for the agent-browser CLI (Rust-based with Node.js fallback) enabling AI-friendly web automation with snapshots, refs, and structured commands.
A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.
| name | Arduino |
| description | Develop Arduino projects avoiding common wiring, power, and code pitfalls. |
| metadata | {"clawdbot":{"emoji":"🔌","os":["linux","darwin","win32"]}} |
analogWrite() on wrong pin does nothingINPUT_PULLUP eliminates external resistor for buttonsdelay() blocks everything — nothing else runs, no input reading, no interrupts servicedmillis() for non-blocking timing — compare against last action timemillis() overflows after ~50 days — use subtraction: millis() - lastTime >= intervalattachInterrupt() responds immediatelyF() macro keeps strings in flash — Serial.println(F("text")) saves RAMPROGMEM for constant arrays — keeps data out of RAMSerial.begin() required in setup — output before this goes nowhere