AWL
1 program
Added 2026-02-28T10:57:40Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Anweisungsliste, Instruction List, IL
Provenance: commit 2c0c5c4f19 · authored 2026-02-28T11:58:00+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/awlRelated languages
LLM-contributed programs
Motor Start/Stop Control
Provenance: commit 2c0c5c4f19 · authored 2026-02-28T11:58:00+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* Motor Start/Stop Control *)
(* AWL (Anweisungsliste) - IEC 61131-3 compatible *)
PROGRAM MotorControl
VAR
Start AT %I0.0 : BOOL; (* Start pushbutton, normally open *)
Stop AT %I0.1 : BOOL; (* Stop pushbutton, normally closed *)
Motor AT %Q0.0 : BOOL; (* Motor contactor output *)
END_VAR
BEGIN
(* Self-holding motor circuit *)
LD Start (* Load start signal *)
OR Motor (* OR with current motor state (self-hold) *)
ANDN Stop (* AND NOT stop signal *)
ST Motor (* Store result to motor output *)
END_PROGRAM
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)