Skip to content
Snippets Groups Projects
RCSwitch.cpp 16.6 KiB
Newer Older
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
/*
s.oezguer's avatar
s.oezguer committed
  RCSwitch - Arduino libary for remote control outlet switches
s.oezguer's avatar
s.oezguer committed
  Copyright (c) 2011 Suat zgr.  All right reserved.
  Contributors:
  - Gordeev Andrey Vladimirovich / gordeev(at)openpyro(dot)com
  
s.oezguer's avatar
s.oezguer committed
  Project home: http://code.google.com/p/rc-switch/
s.oezguer's avatar
s.oezguer committed
  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.
s.oezguer's avatar
s.oezguer committed
  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.
s.oezguer's avatar
s.oezguer committed
  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed

#include "RCSwitch.h"
s.oezguer's avatar
s.oezguer committed
unsigned long RCSwitch::nReceivedValue = NULL;
unsigned int RCSwitch::nReceivedBitlength = 0;
unsigned int RCSwitch::nReceivedDelay = 0;
s.oezguer's avatar
s.oezguer committed
unsigned int RCSwitch::nReceivedProtocol = 0;
s.oezguer's avatar
s.oezguer committed
unsigned int RCSwitch::timings[RCSWITCH_MAX_CHANGES];
int RCSwitch::nReceiveTolerance = 60;
s.oezguer's avatar
s.oezguer committed

RCSwitch::RCSwitch() {
  this->nReceiverInterrupt = -1;
  this->nTransmitterPin = -1;
s.oezguer's avatar
s.oezguer committed
  RCSwitch::nReceivedValue = NULL;
s.oezguer's avatar
s.oezguer committed
  this->setPulseLength(350);
  this->setReceiveTolerance(60);
s.oezguer's avatar
s.oezguer committed
  this->setProtocol(1);
s.oezguer's avatar
s.oezguer committed
}

s.oezguer's avatar
s.oezguer committed
/**
  * Sets the protocol to send.
  */
void RCSwitch::setProtocol(int nProtocol) {
  this->nProtocol = nProtocol;
  if (nProtocol == 1){
	  this->setPulseLength(350);
  }
  else if (nProtocol == 2) {
	  this->setPulseLength(650);
  }
}

/**
  * Sets the protocol to send with pulse length in microseconds.
  */
void RCSwitch::setProtocol(int nProtocol, int nPulseLength) {
  this->nProtocol = nProtocol;
  if (nProtocol == 1){
	  this->setPulseLength(nPulseLength);
  }
  else if (nProtocol == 2) {
	  this->setPulseLength(nPulseLength);
  }
}


s.oezguer's avatar
s.oezguer committed
/**
  * Sets pulse length in microseconds
  */
void RCSwitch::setPulseLength(int nPulseLength) {
  this->nPulseLength = nPulseLength;
 * Sets Repeat Transmits
 */
s.oezguer's avatar
s.oezguer committed
void RCSwitch::setRepeatTransmit(int nRepeatTransmit) {
  this->nRepeatTransmit = nRepeatTransmit;
/**
 * Set Receiving Tolerance
 */
void RCSwitch::setReceiveTolerance(int nPercent) {
  RCSwitch::nReceiveTolerance = nPercent;
}
  

s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
/**
s.oezguer's avatar
s.oezguer committed
 * Enable transmissions
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *
s.oezguer's avatar
s.oezguer committed
 * @param nTransmitterPin    Arduino Pin to which the sender is connected to
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
s.oezguer's avatar
s.oezguer committed
void RCSwitch::enableTransmit(int nTransmitterPin) {
  this->nTransmitterPin = nTransmitterPin;
  pinMode(this->nTransmitterPin, OUTPUT);
}

/**
  * Disable transmissions
  */
void RCSwitch::disableTransmit() {
  this->nTransmitterPin = -1;
/**
 * Switch a remote switch on (Type C Intertechno)
 *
 * @param sFamily  Familycode (a..f)
 * @param nGroup   Number of group (1..4)
 * @param nDevice  Number of device (1..4)
  */
void RCSwitch::switchOn(char sFamily, int nGroup, int nDevice) {
  this->sendTriState( this->getCodeWordC(sFamily, nGroup, nDevice, true) );
}

/**
 * Switch a remote switch off (Type C Intertechno)
 *
 * @param sFamily  Familycode (a..f)
 * @param nGroup   Number of group (1..4)
 * @param nDevice  Number of device (1..4)
 */
void RCSwitch::switchOff(char sFamily, int nGroup, int nDevice) {
  this->sendTriState( this->getCodeWordC(sFamily, nGroup, nDevice, false) );
}

s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
/**
 * Switch a remote switch on (Type B with two rotary/sliding switches)
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *
 * @param nAddressCode  Number of the switch group (1..4)
 * @param nChannelCode  Number of the switch itself (1..4)
 */
void RCSwitch::switchOn(int nAddressCode, int nChannelCode) {
  this->sendTriState( this->getCodeWordB(nAddressCode, nChannelCode, true) );
s.oezguer's avatar
s.oezguer committed
 * Switch a remote switch off (Type B with two rotary/sliding switches)
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *
 * @param nAddressCode  Number of the switch group (1..4)
 * @param nChannelCode  Number of the switch itself (1..4)
 */
void RCSwitch::switchOff(int nAddressCode, int nChannelCode) {
  this->sendTriState( this->getCodeWordB(nAddressCode, nChannelCode, false) );
 * Switch a remote switch on (Type A with 10 pole DIP switches)
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *
 * @param sGroup        Code of the switch group (refers to DIP switches 1..5 where "1" = on and "0" = off, if all DIP switches are on it's "11111")
 * @param nChannelCode  Number of the switch itself (1..4)
 */
void RCSwitch::switchOn(char* sGroup, int nChannel) {
  this->sendTriState( this->getCodeWordA(sGroup, nChannel, true) );
s.oezguer's avatar
s.oezguer committed
 * Switch a remote switch off (Type A with 10 pole DIP switches)
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *
 * @param sGroup        Code of the switch group (refers to DIP switches 1..5 where "1" = on and "0" = off, if all DIP switches are on it's "11111")
 * @param nChannelCode  Number of the switch itself (1..4)
 */
void RCSwitch::switchOff(char* sGroup, int nChannel) {
  this->sendTriState( this->getCodeWordA(sGroup, nChannel, false) );
s.oezguer's avatar
s.oezguer committed
 * Returns a char[13], representing the Code Word to be send.
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 * A Code Word consists of 9 address bits, 3 data bits and one sync bit but in our case only the first 8 address bits and the last 2 data bits were used.
 * A Code Bit can have 4 different states: "F" (floating), "0" (low), "1" (high), "S" (synchronous bit)
 *
 * +-------------------------------+--------------------------------+-----------------------------------------+-----------------------------------------+----------------------+------------+
 * | 4 bits address (switch group) | 4 bits address (switch number) | 1 bit address (not used, so never mind) | 1 bit address (not used, so never mind) | 2 data bits (on|off) | 1 sync bit |
 * | 1=0FFF 2=F0FF 3=FF0F 4=FFF0   | 1=0FFF 2=F0FF 3=FF0F 4=FFF0    | F                                       | F                                       | on=FF off=F0         | S          |
 * +-------------------------------+--------------------------------+-----------------------------------------+-----------------------------------------+----------------------+------------+
s.oezguer's avatar
s.oezguer committed
 *
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 * @param nAddressCode  Number of the switch group (1..4)
 * @param nChannelCode  Number of the switch itself (1..4)
 * @param bStatus       Wether to switch on (true) or off (false)
s.oezguer's avatar
s.oezguer committed
 *
 * @return char[13]
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
char* RCSwitch::getCodeWordB(int nAddressCode, int nChannelCode, boolean bStatus) {
   int nReturnPos = 0;
   static char sReturn[13];
   
   char* code[5] = { "FFFF", "0FFF", "F0FF", "FF0F", "FFF0" };
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
   if (nAddressCode < 1 || nAddressCode > 4 || nChannelCode < 1 || nChannelCode > 4) {
    return '\0';
   }
   for (int i = 0; i<4; i++) {
     sReturn[nReturnPos++] = code[nAddressCode][i];
   for (int i = 0; i<4; i++) {
     sReturn[nReturnPos++] = code[nChannelCode][i];
   }
   
   sReturn[nReturnPos++] = 'F';
   sReturn[nReturnPos++] = 'F';
   sReturn[nReturnPos++] = 'F';
   
   if (bStatus) {
      sReturn[nReturnPos++] = 'F';
   } else {
      sReturn[nReturnPos++] = '0';
   }
   
   sReturn[nReturnPos] = '\0';
   
   return sReturn;
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
/**
s.oezguer's avatar
s.oezguer committed
 * Like getCodeWord  (Type A)
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
char* RCSwitch::getCodeWordA(char* sGroup, int nChannelCode, boolean bStatus) {
   int nReturnPos = 0;
   static char sReturn[13];

  char* code[6] = { "FFFFF", "0FFFF", "F0FFF", "FF0FF", "FFF0F", "FFFF0" };
  if (nChannelCode < 1 || nChannelCode > 5) {
      return '\0';
  }
  
  for (int i = 0; i<5; i++) {
    if (sGroup[i] == '0') {
      sReturn[nReturnPos++] = 'F';
    } else if (sGroup[i] == '1') {
      sReturn[nReturnPos++] = '0';
      return '\0';
  for (int i = 0; i<5; i++) {
    sReturn[nReturnPos++] = code[ nChannelCode ][i];
  }
  
  if (bStatus) {
    sReturn[nReturnPos++] = '0';
    sReturn[nReturnPos++] = 'F';
  } else {
    sReturn[nReturnPos++] = 'F';
    sReturn[nReturnPos++] = '0';
  }
  sReturn[nReturnPos] = '\0';

  return sReturn;
/**
 * Like getCodeWord (Type C = Intertechno)
 */
char* RCSwitch::getCodeWordC(char sFamily, int nGroup, int nDevice, boolean bStatus) {
  static char sReturn[13];
  int nReturnPos = 0;
  
  if ( (byte)sFamily < 97 || (byte)sFamily > 112 || nGroup < 1 || nGroup > 4 || nDevice < 1 || nDevice > 4) {
    return '\0';
  char* sDeviceGroupCode =  dec2binWzerofill(  (nDevice-1) + (nGroup-1)*4, 4  );
  char familycode[16][5] = { "0000", "F000", "0F00", "FF00", "00F0", "F0F0", "0FF0", "FFF0", "000F", "F00F", "0F0F", "FF0F", "00FF", "F0FF", "0FFF", "FFFF" };
  for (int i = 0; i<4; i++) {
    sReturn[nReturnPos++] = familycode[ (int)sFamily - 97 ][i];
  }
  for (int i = 0; i<4; i++) {
    sReturn[nReturnPos++] = (sDeviceGroupCode[3-i] == '1' ? 'F' : '0');
  }
  sReturn[nReturnPos++] = '0';
  sReturn[nReturnPos++] = 'F';
  sReturn[nReturnPos++] = 'F';
  if (bStatus) {
    sReturn[nReturnPos++] = 'F';
  } else {
    sReturn[nReturnPos++] = '0';
  sReturn[nReturnPos] = '\0';
  return sReturn;
}
s.oezguer's avatar
s.oezguer committed
 * Sends a Code Word
s.oezguer's avatar
s.oezguer committed
 * @param sCodeWord   /^[10FS]*$/  -> see getCodeWord
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
void RCSwitch::sendTriState(char* sCodeWord) {
s.oezguer's avatar
s.oezguer committed
  for (int nRepeat=0; nRepeat<nRepeatTransmit; nRepeat++) {
    int i = 0;
    while (sCodeWord[i] != '\0') {
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
      switch(sCodeWord[i]) {
        case '0':
          this->sendT0();
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
        break;
        case 'F':
          this->sendTF();
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
        break;
        case '1':
          this->sendT1();
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
        break;
      }
    this->sendSync();    
void RCSwitch::send(unsigned long Code, unsigned int length) {
  this->send( this->dec2binWzerofill(Code, length) );
}

void RCSwitch::send(char* sCodeWord) {
s.oezguer's avatar
s.oezguer committed
  for (int nRepeat=0; nRepeat<nRepeatTransmit; nRepeat++) {
    int i = 0;
    while (sCodeWord[i] != '\0') {
      switch(sCodeWord[i]) {
        case '0':
          this->send0();
        break;
        case '1':
          this->send1();
        break;
      }
      i++;
    }
    this->sendSync();
  }
}

s.oezguer's avatar
s.oezguer committed
void RCSwitch::transmit(int nHighPulses, int nLowPulses) {
  
  if (this->nTransmitterPin != -1) {
    if (this->nReceiverInterrupt != -1) {
      this->disableReceive();
    }
s.oezguer's avatar
s.oezguer committed
    digitalWrite(this->nTransmitterPin, HIGH);
s.oezguer's avatar
s.oezguer committed
    delayMicroseconds( this->nPulseLength * nHighPulses);
s.oezguer's avatar
s.oezguer committed
    digitalWrite(this->nTransmitterPin, LOW);
s.oezguer's avatar
s.oezguer committed
    delayMicroseconds( this->nPulseLength * nLowPulses);
s.oezguer's avatar
s.oezguer committed
    this->enableReceive();
s.oezguer's avatar
s.oezguer committed
  }
}

s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
/**
 * Sends a "0" Bit
 *            _    
 * Waveform: | |___
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
void RCSwitch::send0() {
s.oezguer's avatar
s.oezguer committed
	if (this->nProtocol == 1){
		this->transmit(1,3);
	}
	else if (this->nProtocol == 2) {
		this->transmit(1,2);
	}
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
}

/**
 * Sends a "1" Bit
 *            ___  
 * Waveform: |   |_
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 */
void RCSwitch::send1() {
s.oezguer's avatar
s.oezguer committed
  	if (this->nProtocol == 1){
		this->transmit(3,1);
	}
	else if (this->nProtocol == 2) {
		this->transmit(2,1);
	}
}


/**
 * Sends a Tri-State "0" Bit
 *            _     _
 * Waveform: | |___| |___
 */
void RCSwitch::sendT0() {
s.oezguer's avatar
s.oezguer committed
  this->transmit(1,3);
  this->transmit(1,3);
}

/**
 * Sends a Tri-State "1" Bit
 *            ___   ___
 * Waveform: |   |_|   |_
 */
void RCSwitch::sendT1() {
s.oezguer's avatar
s.oezguer committed
  this->transmit(3,1);
  this->transmit(3,1);
 * Sends a Tri-State "F" Bit
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 *            _     ___
 * Waveform: | |___|   |_
 */
void RCSwitch::sendTF() {
s.oezguer's avatar
s.oezguer committed
  this->transmit(1,3);
  this->transmit(3,1);
 * Sends a "Sync" Bit
s.oezguer's avatar
s.oezguer committed
 *            _
s.oezguer@googlemail.com's avatar
s.oezguer@googlemail.com committed
 * Waveform: | |_______________________________
 */
void RCSwitch::sendSync() {
s.oezguer's avatar
s.oezguer committed

    if (this->nProtocol == 1){
		this->transmit(1,31);
	}
	else if (this->nProtocol == 2) {
		this->transmit(1,10);
	}
}

/**
 * Enable receiving data
 */
s.oezguer's avatar
s.oezguer committed
void RCSwitch::enableReceive(int interrupt) {
s.oezguer's avatar
s.oezguer committed
  this->nReceiverInterrupt = interrupt;
s.oezguer's avatar
s.oezguer committed
  this->enableReceive();
}

void RCSwitch::enableReceive() {
  if (this->nReceiverInterrupt != -1) {
s.oezguer's avatar
s.oezguer committed
    RCSwitch::nReceivedValue = NULL;
    RCSwitch::nReceivedBitlength = NULL;
    attachInterrupt(this->nReceiverInterrupt, handleInterrupt, CHANGE);
s.oezguer's avatar
s.oezguer committed
  }
}

/**
 * Disable receiving data
 */
void RCSwitch::disableReceive() {
s.oezguer's avatar
s.oezguer committed
  detachInterrupt(this->nReceiverInterrupt);
  this->nReceiverInterrupt = -1;
s.oezguer's avatar
s.oezguer committed
bool RCSwitch::available() {
  return RCSwitch::nReceivedValue != NULL;
}

void RCSwitch::resetAvailable() {
  RCSwitch::nReceivedValue = NULL;
}

s.oezguer's avatar
s.oezguer committed
unsigned long RCSwitch::getReceivedValue() {
    return RCSwitch::nReceivedValue;
}

unsigned int RCSwitch::getReceivedBitlength() {
s.oezguer's avatar
s.oezguer committed
  return RCSwitch::nReceivedBitlength;
s.oezguer's avatar
s.oezguer committed
}

unsigned int RCSwitch::getReceivedDelay() {
s.oezguer's avatar
s.oezguer committed
  return RCSwitch::nReceivedDelay;
}

unsigned int RCSwitch::getReceivedProtocol() {
  return RCSwitch::nReceivedProtocol;
s.oezguer's avatar
s.oezguer committed
}

unsigned int* RCSwitch::getReceivedRawdata() {
    return RCSwitch::timings;
}

s.oezguer's avatar
s.oezguer committed
 *
s.oezguer's avatar
s.oezguer committed
bool RCSwitch::receiveProtocol1(unsigned int changeCount){
s.oezguer's avatar
s.oezguer committed
	  unsigned long code = 0;
s.oezguer's avatar
s.oezguer committed
      unsigned long delay = RCSwitch::timings[0] / 31;
      unsigned long delayTolerance = delay * RCSwitch::nReceiveTolerance * 0.01;    

      for (int i = 1; i<changeCount ; i=i+2) {
      
s.oezguer's avatar
s.oezguer committed
          if (RCSwitch::timings[i] > delay-delayTolerance && RCSwitch::timings[i] < delay+delayTolerance && RCSwitch::timings[i+1] > delay*3-delayTolerance && RCSwitch::timings[i+1] < delay*3+delayTolerance) {
            code = code << 1;
s.oezguer's avatar
s.oezguer committed
          } else if (RCSwitch::timings[i] > delay*3-delayTolerance && RCSwitch::timings[i] < delay*3+delayTolerance && RCSwitch::timings[i+1] > delay-delayTolerance && RCSwitch::timings[i+1] < delay+delayTolerance) {
            code+=1;
            code = code << 1;
          } else {
            // Failed
            i = changeCount;
            code = 0;
          }
      }      
      code = code >> 1;
    if (changeCount > 6) {    // ignore < 4bit values as there are no devices sending 4bit values => noise
      RCSwitch::nReceivedValue = code;
      RCSwitch::nReceivedBitlength = changeCount / 2;
      RCSwitch::nReceivedDelay = delay;
	  RCSwitch::nReceivedProtocol = 1;
    }

	if (code == 0){
		return false;
	}else if (code != 0){
		return true;
	}
	

}

bool RCSwitch::receiveProtocol2(unsigned int changeCount){
    
	  unsigned long code = 0;
      unsigned long delay = RCSwitch::timings[0] / 10;
      unsigned long delayTolerance = delay * RCSwitch::nReceiveTolerance * 0.01;    

      for (int i = 1; i<changeCount ; i=i+2) {
      
          if (RCSwitch::timings[i] > delay-delayTolerance && RCSwitch::timings[i] < delay+delayTolerance && RCSwitch::timings[i+1] > delay*2-delayTolerance && RCSwitch::timings[i+1] < delay*2+delayTolerance) {
            code = code << 1;
          } else if (RCSwitch::timings[i] > delay*2-delayTolerance && RCSwitch::timings[i] < delay*2+delayTolerance && RCSwitch::timings[i+1] > delay-delayTolerance && RCSwitch::timings[i+1] < delay+delayTolerance) {
            code+=1;
            code = code << 1;
          } else {
            // Failed
            i = changeCount;
            code = 0;
          }
      }      
      code = code >> 1;
s.oezguer's avatar
s.oezguer committed
    if (changeCount > 6) {    // ignore < 4bit values as there are no devices sending 4bit values => noise
      RCSwitch::nReceivedValue = code;
      RCSwitch::nReceivedBitlength = changeCount / 2;
      RCSwitch::nReceivedDelay = delay;
	  RCSwitch::nReceivedProtocol = 2;
    }

	if (code == 0){
		return false;
	}else if (code != 0){
		return true;
	}

}
void RCSwitch::handleInterrupt() {

  static unsigned int duration;
  static unsigned int changeCount;
  static unsigned long lastTime;
  static unsigned int repeatCount;
  

  long time = micros();
  duration = time - lastTime;
 
  if (duration > 5000 && duration > RCSwitch::timings[0] - 200 && duration < RCSwitch::timings[0] + 200) {
    repeatCount++;
    changeCount--;
    if (repeatCount == 2) {
		if (receiveProtocol1(changeCount) == false){
			if (receiveProtocol2(changeCount) == false){
				//failed
			}
		}
      repeatCount = 0;
    }
    changeCount = 0;
  } else if (duration > 5000) {
    changeCount = 0;
  }
 
  if (changeCount >= RCSWITCH_MAX_CHANGES) {
    changeCount = 0;
    repeatCount = 0;
  }
s.oezguer's avatar
s.oezguer committed
  RCSwitch::timings[changeCount++] = duration;
s.oezguer's avatar
s.oezguer committed
/**
  * Turns a decimal value to its binary representation
  */
char* RCSwitch::dec2binWzerofill(unsigned long Dec, unsigned int bitLength){
s.oezguer's avatar
s.oezguer committed
  static char bin[64];
s.oezguer's avatar
s.oezguer committed
  unsigned int i=0;

  while (Dec > 0) {
s.oezguer's avatar
s.oezguer committed
    bin[32+i++] = ((Dec & 1) > 0) ? '1' : '0';
s.oezguer's avatar
s.oezguer committed
    Dec = Dec >> 1;
  }
s.oezguer's avatar
s.oezguer committed
  for (unsigned int j = 0; j< bitLength; j++) {
    if (j >= bitLength - i) {
      bin[j] = bin[ 31 + i - (j - (bitLength - i)) ];
    }else {
      bin[j] = '0';
    }
s.oezguer's avatar
s.oezguer committed
  bin[bitLength] = '\0';
  
  return bin;