2002-09-29 13:40:45 +02:00
|
|
|
/*
|
|
|
|
* rcu.h: RCU remote control
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2005-12-31 15:20:19 +01:00
|
|
|
* $Id: rcu.h 1.6 2005/12/31 15:09:25 kls Exp $
|
2002-09-29 13:40:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
2005-12-16 14:53:58 +01:00
|
|
|
int number;
|
|
|
|
unsigned int data;
|
2002-09-29 13:40:45 +02:00
|
|
|
bool receivedCommand;
|
|
|
|
bool SendCommand(unsigned char Cmd);
|
|
|
|
int ReceiveByte(int TimeoutMs = 0);
|
|
|
|
bool SendByteHandshake(unsigned char c);
|
|
|
|
bool SendByte(unsigned char c);
|
2005-12-16 14:53:58 +01:00
|
|
|
bool SendData(unsigned int n);
|
|
|
|
void SetCode(unsigned char Code);
|
|
|
|
void SetMode(unsigned char Mode);
|
|
|
|
void SetNumber(int n, bool Hex = false);
|
2002-09-29 13:40:45 +02:00
|
|
|
void SetPoints(unsigned char Dp, bool On);
|
2005-12-16 14:53:58 +01:00
|
|
|
void SetString(char *s);
|
2002-09-29 13:40:45 +02:00
|
|
|
bool DetectCode(unsigned char *Code);
|
|
|
|
virtual void Action(void);
|
|
|
|
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
|
2005-12-31 15:20:19 +01:00
|
|
|
virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On);
|
2002-09-29 13:40:45 +02:00
|
|
|
public:
|
2005-07-31 11:38:40 +02:00
|
|
|
cRcuRemote(const char *DeviceName);
|
2002-09-29 13:40:45 +02:00
|
|
|
virtual ~cRcuRemote();
|
2003-04-12 14:37:57 +02:00
|
|
|
virtual bool Ready(void);
|
2002-09-29 13:40:45 +02:00
|
|
|
virtual bool Initialize(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__RCU_H
|