From 514da5e875da622d4a145437b5aca124bdc39fd6 Mon Sep 17 00:00:00 2001 From: John Shaver Date: Wed, 12 Dec 2018 21:21:43 -0800 Subject: [PATCH] Adjusted the breathing pulse to be a little less dramatic. --- runSchedule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runSchedule.js b/runSchedule.js index 2b30623..1044095 100644 --- a/runSchedule.js +++ b/runSchedule.js @@ -57,7 +57,7 @@ function render() { } function getBrightness(x) { - return Math.floor(breathingCurve(x, 6000, 100000, 1000000)); + return Math.floor(breathingCurve(x, 8000, 250000, 900000)); } function breathingCurve(x, interval = 3000, min, max) {