Validations
Problem
Feature Request
I would like to request support for PLC ST (Structured Text) language in Continue.
What is PLC ST?
PLC ST (Structured Text) is a high-level programming language used in industrial automation and control systems, specifically for Programmable Logic Controllers (PLCs). It is one of the programming languages defined by IEC 61131-3 standard.
Why is this important?
- ST is widely used in industrial automation
- It's a text-based language that could benefit from AI assistance
- Many automation engineers use ST daily for programming PLCs
- Having Continue support would improve productivity for automation developers
Suggested features:
- Syntax highlighting for ST language
- Code completion
- Code analysis
Example ST code:
PROGRAM MainProgram
VAR
Counter : INT := 0;
Signal : BOOL;
END_VAR
IF Signal THEN
Counter := Counter + 1;
IF Counter >= 100 THEN
Counter := 0;
END_IF;
END_IF;
END_PROGRAM
Solution
No response
Validations
Problem
Feature Request
I would like to request support for PLC ST (Structured Text) language in Continue.
What is PLC ST?
PLC ST (Structured Text) is a high-level programming language used in industrial automation and control systems, specifically for Programmable Logic Controllers (PLCs). It is one of the programming languages defined by IEC 61131-3 standard.
Why is this important?
Suggested features:
Example ST code:
Solution
No response