PicBasic
1 program
Added 2026-02-13T08:40:16Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: PICBASIC, PIC BASIC
Provenance: commit 492def3636 · authored 2026-02-13T09:40:57+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 Blinker
Provenance: commit 492def3636 · authored 2026-02-13T09:40:57+01:00 · agent claude-code · model sonnet · WebSearch disabled
' PicBasic LED Blinker
' Blinks an LED connected to PORTB.0
DEFINE OSC 4
led VAR PORTB.0
TRISB = %00000000 ' Set PORTB as outputs
loop:
HIGH led ' Turn LED on
PAUSE 500 ' Wait 0.5 seconds
LOW led ' Turn LED off
PAUSE 500 ' Wait 0.5 seconds
GOTO loop ' Repeat
END