powersync-plugins/leynew/devicepluginleynew.cpp

153 lines
6.6 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 2015 Simon Stürz <simon.stuerz@guh.io> *
* *
* This file is part of nymea. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; If not, see *
* <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "devicepluginleynew.h"
#include "plugininfo.h"
#include "hardware/radio433/radio433.h"
#include <QDebug>
#include <QStringList>
DevicePluginLeynew::DevicePluginLeynew()
{
}
void DevicePluginLeynew::setupDevice(DeviceSetupInfo *info)
{
if (!hardwareManager()->radio433()->available()) {
return info->finish(Device::DeviceErrorHardwareNotAvailable, QT_TR_NOOP("No 433 MHz radio available on this system."));
}
}
void DevicePluginLeynew::executeAction(DeviceActionInfo *info)
{
if (!hardwareManager()->radio433()->available()) {
return info->finish(Device::DeviceErrorHardwareNotAvailable, QT_TR_NOOP("No 433 MHz radio available on this system."));
}
Device *device = info->device();
Action action = info->action();
QList<int> rawData;
QByteArray binCode;
// TODO: find out how the id will be calculated to bin code or make it discoverable
// =======================================
// bincode depending on the id
if (device->paramValue(rfControllerDeviceIdParamTypeId) == "0115"){
binCode.append("001101000001");
} else if (device->paramValue(rfControllerDeviceIdParamTypeId) == "0014") {
binCode.append("110000010101");
} else if (device->paramValue(rfControllerDeviceIdParamTypeId) == "0008") {
binCode.append("111101010101");
} else {
qCWarning(dcLeynew) << "Could not get id of device: invalid parameter" << device->paramValue(rfControllerDeviceIdParamTypeId);
return info->finish(Device::DeviceErrorInvalidParameter);
}
int repetitions = 12;
// =======================================
// bincode depending on the action
if (action.actionTypeId() == rfControllerBrightnessUpActionTypeId) {
binCode.append("000000000011");
repetitions = 8;
} else if (action.actionTypeId() == rfControllerBrightnessDownActionTypeId) {
binCode.append("000000001100");
repetitions = 8;
} else if (action.actionTypeId() == rfControllerPowerActionTypeId) {
binCode.append("000011000000");
} else if (action.actionTypeId() == rfControllerRedActionTypeId) {
binCode.append("000000001111");
} else if (action.actionTypeId() == rfControllerGreenActionTypeId) {
binCode.append("000000110011");
} else if (action.actionTypeId() == rfControllerBlueActionTypeId) {
binCode.append("000011000011");
} else if (action.actionTypeId() == rfControllerWhiteActionTypeId) {
binCode.append("000000111100");
} else if (action.actionTypeId() == rfControllerOrangeActionTypeId) {
binCode.append("000011001100");
} else if (action.actionTypeId() == rfControllerYellowActionTypeId) {
binCode.append("000011110000");
} else if (action.actionTypeId() == rfControllerCyanActionTypeId) {
binCode.append("001100000011");
} else if (action.actionTypeId() == rfControllerPurpleActionTypeId) {
binCode.append("110000000011");
} else if (action.actionTypeId() == rfControllerPlayPauseActionTypeId) {
binCode.append("000000110000");
} else if (action.actionTypeId() == rfControllerSpeedUpActionTypeId) {
binCode.append("001100110000");
repetitions = 8;
} else if (action.actionTypeId() == rfControllerSpeedDownActionTypeId) {
binCode.append("110000000000");
repetitions = 8;
} else if (action.actionTypeId() == rfControllerAutoActionTypeId) {
binCode.append("001100001100");
} else if (action.actionTypeId() == rfControllerFlashActionTypeId) {
binCode.append("110011000000");
} else if (action.actionTypeId() == rfControllerJump3ActionTypeId) {
binCode.append("111100001100");
} else if (action.actionTypeId() == rfControllerJump7ActionTypeId) {
binCode.append("001111000000");
} else if (action.actionTypeId() == rfControllerFade3ActionTypeId) {
binCode.append("110000110000");
} else if (action.actionTypeId() == rfControllerFade7ActionTypeId) {
binCode.append("001100000000");
} else {
return info->finish(Device::DeviceErrorActionTypeNotFound);
}
// =======================================
//create rawData timings list
int delay = 50;
// sync signal (starting with ON)
rawData.append(3);
rawData.append(90);
// add the code
foreach (QChar c, binCode) {
if(c == '0'){
// _
// | |_ _
rawData.append(3);
rawData.append(9);
}else{
// _ _
// | |_
rawData.append(9);
rawData.append(3);
}
}
// =======================================
// send data to hardware resource
if(hardwareManager()->radio433()->sendData(delay, rawData, repetitions)){
qCDebug(dcLeynew) << "Transmitted" << pluginName() << device->name() << action.id();
}else{
qCWarning(dcLeynew) << "Could not transmitt" << pluginName() << device->name() << action.id();
return info->finish(Device::DeviceErrorHardwareFailure, QT_TR_NOOP("Error sending data."));
}
info->finish(Device::DeviceErrorNoError);
}