Added 'lightberry' device

Former-commit-id: 9ada3a0bb32e694b6e2f4da265421147559a117b
This commit is contained in:
T. van der Zwan 2013-12-12 22:04:41 +00:00
parent 91f09eceb0
commit 155c2a0ae9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ LedDevice* Hyperion::createDevice(const Json::Value& deviceConfig)
std::transform(type.begin(), type.end(), type.begin(), ::tolower);
LedDevice* device = nullptr;
if (type == "ws2801")
if (type == "ws2801" || type == "lightberry")
{
const std::string output = deviceConfig["output"].asString();
const unsigned rate = deviceConfig["rate"].asInt();