> For the complete documentation index, see [llms.txt](https://infosys.selmotech.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://infosys.selmotech.com/selmo-struktur-und-standard/selmo-technischer-standard-und-struktur/beschreibung-selmo-plc-code/hardware-zonen-control/less-than-hwzone_name-greater-than/less-than-hwzone_name-greater-than_control/start-up-alarm.md).

# Start-up Alarm

**Start-up Alarm** Um alle Sequenzen, die mit dieser Hardwarezone verbunden sind, zu starten, müssen Sie die Freigabetaste für 3 Sekunden(Default) drücken und alle Tore der Zone müssen geschlossen sein. Während dieser Verzögerung wird der Startalarm aktiviert, wenn die Taste gedrückt wird, und kann dann zur Aktivierung einer Sirene verwendet werden. Beim Loslassen der Taste wird der Timer zurückgesetzt und der Ausgang ZONE RELEASE REQUEST wird nicht aktiviert.

Copy

```
// --------------------------------Start-up Alarm--------------------------------
   {region "Description Start-up Alarm"}
   (*
   To start all sequences associated with this zone, the release pushbutton must be pressed, and all gates for the zone closed. 
   If a gate has been opened, the release pushbutton must be held in for five seconds before the ZONE RELEASE output is activated. 
   During this delay, if a gate had previously been opened and any associated sequences are ready to start, while the pushbutton is pressed the Start-up alarm is enabled, 
   this is then used to operate a siren. The Release pushbutton must be held in for the duration of the delay timer for the sequences associated with this zone to start. 
   If the pushbutton is released, the timer is reset and the ZONE RELEASE output will not be activated.
   *)
   {endregion}
   
   fbTonGlobalRelease(IN:= NOT GVL_<HwZone_name>.stHwzIf.xGateFortressFault AND GVL_<HwZone_name>.stHwzIf.xAutomaticModeOn AND GVL_<HwZone_name>.stHwzIf.xAnySeqReadyToStart AND GVL_Global.stGlobalIf.xRelease , 
   PT:= GVL_Global.stGlobalIf.timGlobalPresetDelay, Q=> GVL_<HwZone_name>.stHwzIf.xAutoReleaseRequest);
   GVL_<HwZone_name>.stHwzIf.xStartUpAlarm := NOT fbTonGlobalRelease.Q AND GVL_<HwZone_name>.stHwzIf.xAutomaticModeOn AND GVL_<HwZone_name>.stHwzIf.xAnySeqReadyToStart AND GVL_Global.stGlobalIf.xRelease;
```

<\*\*\*>Variablen Name, Kommentar und Datentyp werden aus dem Studio automatisch übernommen


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://infosys.selmotech.com/selmo-struktur-und-standard/selmo-technischer-standard-und-struktur/beschreibung-selmo-plc-code/hardware-zonen-control/less-than-hwzone_name-greater-than/less-than-hwzone_name-greater-than_control/start-up-alarm.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
