From dc3098095cd51a3de3dd67e9d0144416f9031013 Mon Sep 17 00:00:00 2001
From: BlueFox <bluefox@privacynerd.de>
Date: Mon, 28 Oct 2024 19:31:54 +0000
Subject: [PATCH] [WelcomeScreen.py] Added hints on the time unit of the
 parameters!

---
 WelcomeScreen.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/WelcomeScreen.py b/WelcomeScreen.py
index 5a6f76a..7c39d57 100644
--- a/WelcomeScreen.py
+++ b/WelcomeScreen.py
@@ -47,13 +47,13 @@ class WelcomeScreen:
     # ---
     # cycles says how often the Starting text goes through
     # ---
-    # wait_after_cycles is an integer number defining how long to wait before returning / if fading
-    # out is activated, the time to wait between end of the cycling animation and the fade out animation
+    # wait_after_cycles is a number in seconds (can be float) defining how long to wait before returning OR
+    # if fading out is activated, the time to wait between end of the cycling animation and the fade out animation
     # ---
     # fade_down is a dict with following keys:
     # - "enabled"      - REQUIRED - wether fading is enabled (default: true)
-    # - "wait_between" - OPTIONAL - the time to wait between each line fade
-    # - "wait_after"   - OPTIONAL - the time to wait after the fade out
+    # - "wait_between" - OPTIONAL - the time in seconds to wait between each line fade
+    # - "wait_after"   - OPTIONAL - the time in seconds to wait after the fade out
     # ---
     # interruptable influences wether the program can be interrupted by pins in the self.interrupt_pins list
     # if this list is empty, even when interruptable is set to true, nothing will be able to interrupt!