Espruino
1 program
Added 2026-02-13T14:00:22.338364Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit df464f3a47 · authored 2026-02-13T15:00:40+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 df464f3a47 · authored 2026-02-13T15:00:40+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Blink an LED on pin B1
var on = false;
setInterval(function() {
on = !on;
LED1.write(on);
}, 500);