Ks0126 keyestudio EASY plug IR Transmitter Module

From Keyestudio Wiki
Revision as of 11:39, 24 September 2016 by Keyestudio (talk | contribs) (Created page with "==EASY plug IR Transmitter Module== <br>500px|frameless|thumb<br> ==Introduction== Infrared transmitting tube, also known as infrared emitting diode, be...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

EASY plug IR Transmitter Module


thumb

Introduction

Infrared transmitting tube, also known as infrared emitting diode, belongs to the diode family. It is a light-emitting device that can directly convert electrical energy to near-infrared light and emit. Its structure and principle is similar to an LED. Only material of semiconductor is different. This module is usually used together with IR receiver module.
Note: this module needs to be used together with EASY plug control board.


Specification

  • Interface: Easy plug
  • Power Supply: 3-5V
  • Infrared center frequency: 850nm-940nm
  • Infrared emission angle: about 20degree
  • Infrared emission distance: about 1.3m (5V 38Khz)
  • Interface socket: JST PH2.0
  • Mounting hole: inner diameter is 3.2mm, spacing is 15mm
  • Size: 43.8*20mm
  • Weight: 5g


Connection Diagram


thumb


Sample Code

#include <IRremote.h>
IRsend irsend;
void setup()
{
Serial.begin(9600);
}
void loop() {
irsend.sendSony(0xa90, 12); // Sony TV power code
delay(100);
}