Merge pull request #100 from MarcDahlem/master

Added ability to define effect arguments for the bootsequence

Former-commit-id: afc8e8ea4e7f02039092bfca698e5e3e491604c2
This commit is contained in:
poljvd 2014-05-06 22:01:35 +02:00
commit 2d16d369a3

View File

@ -113,6 +113,22 @@ int main(int argc, char** argv)
const unsigned duration_ms = effectConfig["duration_ms"].asUInt();
const int priority = 0;
if (effectConfig.isMember("args"))
{
const Json::Value effectConfigArgs = effectConfig["args"];
if (hyperion.setEffect(effectName, effectConfigArgs, priority, duration_ms) == 0)
{
std::cout << "Boot sequence(" << effectName << ") with user-defined arguments created and started" << std::endl;
}
else
{
std::cout << "Failed to start boot sequence: " << effectName << " with user-defined arguments" << std::endl;
}
}
else
{
if (hyperion.setEffect(effectName, priority, duration_ms) == 0)
{
std::cout << "Boot sequence(" << effectName << ") created and started" << std::endl;
@ -122,6 +138,7 @@ int main(int argc, char** argv)
std::cout << "Failed to start boot sequence: " << effectName << std::endl;
}
}
}
// create XBMC video checker if the configuration is present
XBMCVideoChecker * xbmcVideoChecker = nullptr;