For the complete documentation index, see llms.txt. This page is also available as Markdown.

What is GPC?

The language behind every Cronus Zen script, and the three ideas that matter most in a real-time report loop.

GPC is the scripting language used to read controller input, maintain state, transform values, schedule timed sequences, control device feedback, and write the outgoing controller report on Cronus Zen.

A GPC script is not a desktop program. Its main section runs repeatedly as part of the real-time report loop. That makes three ideas especially important:

1

Read the input layer you actually mean.

2

Keep one clear final writer for each output.

3

Perform expensive display or persistence work only when something changes.

This guide begins with those ideas before introducing advanced storage, architecture, and VM details.

Last updated