In developmentNot released yet — features and data may change without notice.

Examples

Examples

Use the built-in pull-up

Reads a button with INPUT_PULLUP and no external resistor — pressed reads 0.

Arduino Uno R30 libraries46 linesOverall confidence 100%

SourceRead onlydigital_input_pullup.ino
What the parser saw

Extracted from #include · #define · pinMode · constructor arguments. The output of a deterministic parser, not an AI.

Parts

buttonusage pinMode(2, INPUT_PULLUP)
50%
ledusage pinMode(13, OUTPUT)
50%

Buses

Libraries

No libraries — read from pin names and pinMode alone.

Pin contract

An immutable contract owned by the project. It survives level changes; on a target board only the physical pins are remapped.

Logical namePinDirectionSignalDeclared as
2D2indigitalliteral
13D13outdigitalliteral

This page passes no verification gate. Logic (simulator), electrical (ERC · DRC) and physical (your confirmation) verification each run separately inside a project.

Next step

Same sketch, from simulation to PCB

The code stays as it is. Run it on avr8js in the Playground; import it into a project and the 8-pass electrical verification, KiCad board generation and Gerber export follow.

Use the built-in pull-up · ibouPCB