mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
/*
|
|
* rcu.h: RCU remote control
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: rcu.h 1.6 2005/12/31 15:09:25 kls Exp $
|
|
*/
|
|
|
|
#ifndef __RCU_H
|
|
#define __RCU_H
|
|
|
|
#include "remote.h"
|
|
#include "status.h"
|
|
#include "thread.h"
|
|
|
|
class cRcuRemote : public cRemote, private cThread, private cStatus {
|
|
private:
|
|
enum { modeH = 'h', modeB = 'b', modeS = 's' };
|
|
int f;
|
|
unsigned char dp, code, mode;
|
|
int number;
|
|
unsigned int data;
|
|
bool receivedCommand;
|
|
bool SendCommand(unsigned char Cmd);
|
|
int ReceiveByte(int TimeoutMs = 0);
|
|
bool SendByteHandshake(unsigned char c);
|
|
bool SendByte(unsigned char c);
|
|
bool SendData(unsigned int n);
|
|
void SetCode(unsigned char Code);
|
|
void SetMode(unsigned char Mode);
|
|
void SetNumber(int n, bool Hex = false);
|
|
void SetPoints(unsigned char Dp, bool On);
|
|
void SetString(char *s);
|
|
bool DetectCode(unsigned char *Code);
|
|
virtual void Action(void);
|
|
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
|
|
virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On);
|
|
public:
|
|
cRcuRemote(const char *DeviceName);
|
|
virtual ~cRcuRemote();
|
|
virtual bool Ready(void);
|
|
virtual bool Initialize(void);
|
|
};
|
|
|
|
#endif //__RCU_H
|