Develop Arduino projects avoiding common wiring, power, and code pitfalls. Use when this capability is needed.
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 nowhereConverted and distributed by TomeVault Context snippets also available to append to your CLAUDE.md, GEMINI.md, and copilot-instructions.md — download at TomeVault