From 95881426f4374fcfd231733dcfe096b45d79d749 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 27 Dec 2024 15:06:22 +0100 Subject: [PATCH] Render Graph in README Test --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 455eb90..29ec633 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,13 @@ Below is short explanation of remaining files in the project folder. ``` Additionally, the sample project contains Makefile and component.mk files, used for the legacy Make based build system. They are not used or needed when building with CMake and idf.py. + +# Example Render Test + +```mermaid +graph LR + A[Start] --> B{Ist es gut?} + B -->|Ja| C[Gut] + B -->|Nein| D[Schlecht] + C --> E[Ende] + D -->