sending IR code to carrier AC

Everything related to protocols and IR codes
Post Reply
NorhanAmin
Posts: 1
Joined: Wed Sep 26, 2018 10:51 am

sending IR code to carrier AC

Post by NorhanAmin »

hello All,
I have Carrier AC Crystal plus
model no:
42KHFT18-708
Remote model no :
RG56/RGEF-CAEG

when i pressed on /off button i got these data:
type: 7
irCode: B24D3FC010110010010011010011111111000000
, bits: 32
Decoded SAMSUNG: B24D3FC0(32 bits)
#define Something_DEC 2991407040
#define Something_HEX B24D3FC0
Raw (100): 6730 4350 -4300 600 -1550 600 -500 600 -1550 600 -1550 600 -500 550 -500 600 -1550 600 -500 600 -450 600 -1550 600 -500 600 -500 550 -1600 550 -1600 550 -500 600 -1550 600 -500 600 -500 550 -1600 550 -1600 550 -1600 550 -1600 550 -1600 550 -1600 550 -1600 600 -1550 600 -450 600 -500 600 -450 600 -500 600 -500 550 -500 600 -500 600 -450 600 -1550 600 -500 600 -500 550 -500 600 -500 600 -450 600 -1550 600 -1550 600 -500 600 -1550 600 -1550 600 -1550 600 -1550 600 -1550 550

__________________________
type: 7
irCode: B24D7B8410110010010011010111101110000100
, bits: 32
Decoded SAMSUNG: B24D7B84(32 bits)
#define Something_DEC 2991422340
#define Something_HEX B24D7B84
Raw (100): 6484 4350 -4300 600 -1550 600 -500 600 -1550 600 -1550 600 -450 600 -500 600 -1550 600 -500 600 -450 600 -1550 600 -500 600 -500 550 -1550 600 -1600 550 -500 600 -1550 600 -500 600 -1550 600 -1550 600 -1550 600 -1550 600 -450 600 -1550 600 -1600 550 -1600 600 -450 600 -500 600 -450 600 -500 600 -1550 600 -500 550 -500 600 -1550 600 -1550 600 -1550 600 -500 600 -450 600 -500 600 -500 550 -500 600 -500 600 -450 600 -500 600 -1550 600 -1550 600 -1550 600 -1550 600 -1550 550 type: 7


i tried to use :

irsend.sendSAMSUNG(0xB24D7B84,32);
delay(5000);
irsend.sendSAMSUNG(0xB24D3FC0,32);

and tried this also

unsigned int Signal_0[] = {4350,4300,600,1550,600,500,600,1550,600,1550,600,500,550,500,600,1550,600,500,600,450,600,1550,600,500,600,500,550,1600,550,1600,550,500,600,1550,600,500,600,500,550,1600,550,1600,550,1600,550,1600,550,1600,550,1600,550,1600,600,1550,600,450,600,500,600,450,600,500,600,500,550,500,600,500,600,450,600,1550,600,500,600,500,550,500,600,500,600,450,600,1550,600,1550,600,500,600,1550,600,1550,600,1550,600,1550,600,1550,550};


unsigned int Signal_1[]={4350,4300,600,1550,600,500,600,1550,600,1550,600,450,600,500,600,1550,600,500,600,450,600,1550,600,500,600,500,550,1550,600,1600,550,500,600,1550,600,500,600,1550,600,1550,600,1550,600,1550,600,450,600,1550,600,1600,550,1600,600,450,600,500,600,450,600,500,600,1550,600,500,550,500,600,1550,600,1550,600,1550,600,500,600,450,600,500,600,500,550,500,600,500,600,450,600,500,600,1550,600,1550,600,1550,600,1550,600,1550,550};



irsend.sendRaw(Signal_0, sizeof(Signal_OFF_1)/sizeof(int), 38);
delay(5000);
irsend.sendRaw(Signal_1, sizeof(Signal_OFF_1)/sizeof(int), 38);


no one of these methods work with me
can anyone help me ??

Thanks in Advance
User avatar
AnalysIR
Site Admin
Posts: 776
Joined: Sat Aug 31, 2013 3:51 pm
Location: Dublin, Ireland
Contact:

Re: sending IR code to carrier AC

Post by AnalysIR »

Try this sketch instead to record the signals (it will work much better than the standard IRremote sketch).

https://www.analysir.com/blog/2014/03/1 ... s-arduino/

PS: It looks like you hit the default size limit in IRremote of 100 for RAWBUF. You can change it , but the sketch linked above is much better.
omegawea
Posts: 1
Joined: Sat Mar 09, 2019 11:33 am

Re: sending IR code to carrier AC

Post by omegawea »

Hi NorhanAmin,
did you have any success in those decodes?
Post Reply