CircuitPython
1 program
Added 2026-02-07T16:21:27Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d1e1346b19 · authored 2026-02-07T17:22:42+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
LED Blink
Provenance: commit d1e1346b19 · authored 2026-02-07T17:22:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
import board
import digitalio
import time
led = digitalio.DigitalInOut(board.LED)
led.direction = digitalio.Direction.OUTPUT
while True:
led.value = True
time.sleep(0.5)
led.value = False
time.sleep(0.5)