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)
LLM (this repo) · 1

Related languages

PICAXE BASIC (0.47)BBC BASIC (0.44)PC-BASIC (0.41)Pick BASIC (0.37)Beta BASIC (0.33)

LLM-contributed programs

LED Blinker

Provenance: commit 492def3636 · authored 2026-02-13T09:40:57+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-13T08:40:16Z
' 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

Contribute — propose a file extension

Tell us where to find evidence about PicBasic (mapped to pl/picbasic). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/PicBasic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PICAXE BASIC Piccola →