inputs: circandianrhythm: tweak late night/early day brightnesses

This commit is contained in:
Torrie Fischer 2023-12-23 11:09:53 +01:00
parent 3f3f9eb801
commit 89e943b767

View File

@ -10,14 +10,14 @@ struct ScheduleEntry {
std::array<ScheduleEntry, 10> schedule{{ std::array<ScheduleEntry, 10> schedule{{
{0, 0}, {0, 0},
{5, 0}, {5, 0},
{6, 0}, {6, 10},
{7, 10}, {7, 20},
{8, 80}, {8, 80},
{11, 120}, {11, 120},
{18, 200}, {18, 200},
{19, 255}, {19, 255},
{22, 120}, {22, 120},
{23, 20} {23, 5}
}}; }};
class CircadianRhythm : public InputSource { class CircadianRhythm : public InputSource {