From a86e451db9d21a048c99c1af3a22b75085abf21b Mon Sep 17 00:00:00 2001 From: "T. van der Zwan" Date: Mon, 22 Sep 2014 20:24:33 +0200 Subject: [PATCH] Added black color before boot-sequence, to make sure that the boot-sequence is the first thing to start Former-commit-id: 575f1dfa4d2047c109d179c209c683c37028e721 --- src/hyperiond/hyperiond.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hyperiond/hyperiond.cpp b/src/hyperiond/hyperiond.cpp index 38d2aa42..4c21b39b 100644 --- a/src/hyperiond/hyperiond.cpp +++ b/src/hyperiond/hyperiond.cpp @@ -115,6 +115,8 @@ int main(int argc, char** argv) const unsigned duration_ms = effectConfig["duration_ms"].asUInt(); const int priority = 0; + hyperion.setColor(priority+1, ColorRgb::BLACK, duration_ms, false); + if (effectConfig.isMember("args")) { const Json::Value effectConfigArgs = effectConfig["args"];