SkillAgentSearch skills...

RC5

Arduino library for RC5 infrared decoding

Install / Use

/learn @guyc/RC5
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Arduino RC5 remote control decoder library

This is an Arduino library for decoding infrared remote control commands encoded with the Philips RC5 protocol. It is based on the article "An Efficient Algorithm for Decoding RC5 Remote Control Signals" by Guy Carpenter, Oct 2001.

For more information see http://clearwater.com.au/code/rc5.

This library supports the extended RC5 protocol which uses the second stop bit S2 as an extension to the command value.

See also http://www.sbprojects.com/knowledge/ir/rc5.php

Using the Library


#include <RC5.h>
#define IR_PIN 7
RC5 rc5(IR_PIN);

void loop() {
  if (rc5.read(&toggle, &address, &command))
  {
    Serial.print(address);
    Serial.print(",");
    Serial.print(command);
    Serial.println(toggle ? " (t) " : "");
  }
}

Pressing the power button on the remote control twice produces this output:

0,12 (t) 
0,12 (t) 
0,12
0,12

which is address 0 (TV1), command 12 (Standby)

Related Skills

View on GitHub
GitHub Stars25
CategoryDevelopment
Updated1y ago
Forks11

Languages

C++

Security Score

60/100

Audited on Apr 3, 2025

No findings