diff --git a/config/hyperion.config.json b/config/hyperion.config.json index c232cac0..3ed2b855 100644 --- a/config/hyperion.config.json +++ b/config/hyperion.config.json @@ -364,7 +364,8 @@ "/opt/hyperion/effects" ] }, - "Bootsequence" : + + "bootsequence" : { "effect" : "Rainbow swirl fast", "duration_ms" : 3000 diff --git a/src/hyperiond/hyperiond.cpp b/src/hyperiond/hyperiond.cpp index c0b50cb1..3f46c712 100644 --- a/src/hyperiond/hyperiond.cpp +++ b/src/hyperiond/hyperiond.cpp @@ -107,7 +107,11 @@ int main(int argc, char** argv) // if (retVal == 0) if (hyperion.setEffect(effectName, priority, duration_ms) == 0) { - std::cout << "Boot sequence created and started" << std::endl; + std::cout << "Boot sequence(" << effectName << ") created and started" << std::endl; + } + else + { + std::cout << "Failed to start boot sequence: " << effectName << std::endl; } }