> For the complete documentation index, see [llms.txt](https://docs.augelab.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.augelab.com/german/function-blocks/data-logic/logic/not.md).

# Not

Dieser Funktionsblock nimmt einen booleschen Eingang und kehrt seinen logischen Zustand um. Er ist nützlich in Szenarien, in denen Sie eine Bedingung negieren oder zwischen wahr und falsch wechseln müssen.

## 📥 Eingänge <a href="#inputs" id="inputs"></a>

`Boolean` Nimmt einen booleschen Eingang an, der negiert wird.

## 📤 Ausgänge <a href="#outputs" id="outputs"></a>

`Boolean` Gibt den negierten booleschen Wert aus.

## 🎨 Funktionen <a href="#features" id="features"></a>

`Logische Negation` Der Block invertiert effektiv den Zustand des Eingangsbooleans, was ihn besonders nützlich für logische Operationen in verschiedenen Anwendungen macht.

## 📝 Nutzungshinweise <a href="#usage" id="usage"></a>

1. **Input anschließen**: Verbinden Sie einen booleschen Ausgang von einem beliebigen Block mit dem Eingang dieses Blocks.
2. **Block ausführen**: Führen Sie den Block aus, und er gibt den negierten booleschen Wert aus.

## 📊 Bewertung <a href="#evaluation" id="evaluation"></a>

Wenn er ausgeführt wird, gibt dieser Funktionsblock die Umkehrung des bereitgestellten booleschen Eingangs zurück.

## 💡 Tipps und Tricks <a href="#tips-and-tricks" id="tips-and-tricks"></a>

<details>

<summary>Kombination mit anderen Logikblöcken</summary>

Sie können diesen Block leicht mit anderen logischen Operationen wie `And` oder `Or` kombinieren, um komplexere logische Bedingungen zu erstellen.

</details>

<details>

<summary>Überprüfen mehrerer Bedingungen</summary>

In Fällen, in denen Sie mehrere boolesche Bedingungen überprüfen müssen, sollten Sie den Funktionsblock `All True` verwenden, um sicherzustellen, dass alle Bedingungen erfüllt sind, und `Not`, um gegebenenfalls umzukehren.

</details>

## 🛠️ Fehlersuche <a href="#troubleshooting" id="troubleshooting"></a>

<details>

<summary>Keine Ausgabe für Eingabewerte</summary>

Stellen Sie sicher, dass der Eingang tatsächlich ein boolescher Wert ist. Wenn der Eingang kein boolescher Wert ist, müssen Sie möglicherweise einen `Logic Input` oder `Data Type Converter` verwenden, um ihn richtig zu konvertieren.

</details>


---

# 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://docs.augelab.com/german/function-blocks/data-logic/logic/not.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.
