telldus/telldus-core/service/ProtocolRisingSun.h

18 lines
448 B
C++

#ifndef PROTOCOLRISINGSUN_H
#define PROTOCOLRISINGSUN_H
#include "service/Protocol.h"
class ProtocolRisingSun : public Protocol
{
public:
int methods() const;
virtual std::string getStringForMethod(int method, unsigned char data, Controller *controller);
protected:
std::string getStringSelflearning(int method);
std::string getStringCodeSwitch(int method);
static std::string getCodeSwitchTuple(int code);
};
#endif //PROTOCOLRISINGSUN_H