28 lines
914 B
C++
28 lines
914 B
C++
#ifndef PROTOCOLNEXA_H
|
|
#define PROTOCOLNEXA_H
|
|
|
|
#include "service/ControllerMessage.h"
|
|
#include "service/Device.h"
|
|
#include <string>
|
|
|
|
class ProtocolNexa : public Protocol {
|
|
public:
|
|
virtual int methods() const;
|
|
virtual std::string getStringForMethod(int method, unsigned char data, Controller *controller);
|
|
static std::string decodeData(ControllerMessage& dataMsg);
|
|
|
|
protected:
|
|
std::string getStringSelflearning(int method, unsigned char data);
|
|
std::string getStringCodeSwitch(int method);
|
|
std::string getStringBell();
|
|
virtual std::string getOffCode() const;
|
|
static std::string getCodeSwitchTuple(int code);
|
|
static std::string getStringSelflearningForCode(int house, int unit, int method, unsigned char data);
|
|
|
|
private:
|
|
static int lastArctecCodeSwitchWasTurnOff;
|
|
static std::string decodeDataCodeSwitch(long allData);
|
|
static std::string decodeDataSelfLearning(long allData);
|
|
};
|
|
|
|
#endif //PROTOCOLNEXA_H
|