ワンクリックで
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