Removed Lightpack based on hidapi from build (not working)

Former-commit-id: b3882807daf5993073a7af811db50fe3d0a45c28
This commit is contained in:
Johan
2013-11-25 16:55:59 +01:00
parent f892a8c09a
commit 983ce30331
2 changed files with 8 additions and 13 deletions

View File

@@ -20,7 +20,6 @@
#include "device/LedDeviceWs2801.h"
#include "device/LedDeviceAdalight.h"
#include "device/LedDeviceLightpack.h"
#include "device/LedDeviceLightpack-hidapi.h"
#include "device/LedDeviceMultiLightpack.h"
#include "LinearColorSmoothing.h"
@@ -95,15 +94,6 @@ LedDevice* Hyperion::createDevice(const Json::Value& deviceConfig)
device = deviceLightpack;
}
else if (type == "lightpack-hidapi")
{
const std::string output = deviceConfig.get("output", "").asString();
LedDeviceLightpackHidapi* deviceLightpack = new LedDeviceLightpackHidapi();
deviceLightpack->open(output);
device = deviceLightpack;
}
else if (type == "multi-lightpack")
{
LedDeviceMultiLightpack* deviceLightpack = new LedDeviceMultiLightpack();