From 89e943b7671c1bce10f4d99c8f54712ece6e3354 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Sat, 23 Dec 2023 11:09:53 +0100 Subject: [PATCH] inputs: circandianrhythm: tweak late night/early day brightnesses --- src/inputs/CircadianRhythm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/inputs/CircadianRhythm.h b/src/inputs/CircadianRhythm.h index 0605d4c..7482616 100644 --- a/src/inputs/CircadianRhythm.h +++ b/src/inputs/CircadianRhythm.h @@ -10,14 +10,14 @@ struct ScheduleEntry { std::array schedule{{ {0, 0}, {5, 0}, - {6, 0}, - {7, 10}, + {6, 10}, + {7, 20}, {8, 80}, {11, 120}, {18, 200}, {19, 255}, {22, 120}, - {23, 20} + {23, 5} }}; class CircadianRhythm : public InputSource {