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!