The TV is not recognized by the signal receiver
The transmitter does not control any device, whether TV, air conditioner, or any other devices
i connect ir transmition in pin 3 and middel in vcc and last in GND
my code is :#include <IRremote.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
// Power ON/OFF
const unsigned int S_pwr[67]={4600,4350,700,1550,650,1550,650,1600,650,450,650,450,650,450,650,450,700,400,700,1550,650,1550,650,1600,650,450,650,450,650,450,700,450,650,450,650,450,650,1550,700,450,650,450,650,450,650,450,650,450,700,400,650,1600,650,450,650,1550,650,1600,650,1550,650,1550,700,1550,650,1550,650};
#define BACKLIGHT_PIN 3
#define I2C_ADDR 0x27
#define En_pin 2
#define Rw_pin 1
#define Rs_pin 0
#define D4_pin 4
#define D5_pin 5
#define D6_pin 6
#define D7_pin 7
LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
IRsend irsend;
void setup() {
Serial.begin(9600);
lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
lcd.setBacklight(HIGH);
lcd.home ();
lcd.begin(16, 2); // start the library
lcd.setCursor(0,0); // Col, Row
lcd.print("IRCracker 2.0");
delay(2000);
lcd.clear();
pinMode(3, OUTPUT);
}
void loop() {
lcd.setCursor(0,0);
irsend.sendSAMSUNG(0xE0E0A05F,32);
lcd.print("samsung tv off");
delay(50000);
lcd.clear();
}
i use irsend.sendRaw(S_pwr,68,38) put also not work
can give me any solution