Description
I'm trying to decode the remote control for my STB but without success.
The brand is ADB and according to the information at irdb the protocol used is XMP-1.
However, the library(IRrecvDumpV2.ino) always log "unknown".
I'm using the TSOP34338 which claims to be, within that type, the best choice for xmp.
Each key appears to have two codes that alternate with each press.(???)
When a key is pressed continuously, the same code is generated as long as the key remains pressed.
Is there any chance we could get support for this protocol?
Below are the outputs for the UP and DOWN key.
UP - 1ª press:
Timestamp : 000185.285
Library : v2.8.6
Protocol : UNKNOWN
Code : 0x4ACCCF10 (25 Bits)
uint16_t rawData[49] = {336, 686, 284, 318, 250, 298, 280, 296, 284, 318, 250, 300, 280, 296, 284, 292, 286, 290, 542, 322, 256, 606, 280, 322, 258, 318, 512, 612, 282, 294, 286, 316, 252, 298, 280, 294, 284, 290, 542, 322, 256, 604, 542, 610, 276, 294, 286, 368, 336};
// UNKNOWN 4ACCCF10
UP - 2ª press:
Timestamp : 000816.242
Library : v2.8.6
Protocol : UNKNOWN
Code : 0x77B67A08 (24 Bits)
uint16_t rawData[47] = {332, 690, 278, 298, 282, 294, 284, 292, 276, 300, 280, 296, 282, 294, 274, 302, 276, 298, 544, 294, 276, 614, 280, 294, 286, 290, 540, 612, 284, 292, 276, 300, 278, 298, 280, 294, 284, 292, 540, 296, 284, 606, 542, 610, 538, 694, 328}; // UNKNOWN 77B67A08
UP - 3ª press:
Timestamp : 000906.086
Library : v2.8.6
Protocol : UNKNOWN
Code : 0x4ACCCF10 (25 Bits)
uint16_t rawData[49] = {334, 688, 280, 294, 274, 302, 278, 298, 280, 296, 284, 292, 276, 300, 278, 296, 282, 294, 538, 298, 280, 608, 276, 300, 278, 296, 546, 606, 278, 298, 282, 294, 274, 302, 278, 298, 280, 296, 536, 300, 278, 610, 538, 612, 334, 234, 282, 374, 332};
// UNKNOWN 4ACCCF10
DOWN - 1ª press:
Timestamp : 001045.971
Library : v2.8.6
Protocol : UNKNOWN
Code : 0x81893889 (25 Bits)
uint16_t rawData[49] = {334, 686, 282, 294, 276, 326, 252, 324, 254, 322, 258, 318, 250, 328, 252, 324, 256, 320, 512, 324, 254, 610, 276, 300, 278, 322, 520, 606, 278, 322, 256, 320, 248, 328, 252, 324, 254, 322, 520, 316, 252, 322, 256, 606, 542, 602, 282, 396, 310};
// UNKNOWN 81893889
DOWN - 2ª press:
Timestamp : 001087.309
Library : v2.8.6
Protocol : UNKNOWN
Code : 0xC26FEEFB (25 Bits)
uint16_t rawData[49] = {336, 686, 284, 318, 250, 326, 252, 324, 256, 320, 260, 318, 250, 324, 254, 322, 256, 318, 514, 324, 254, 608, 276, 298, 280, 322, 520, 604, 280, 322, 256, 320, 248, 328, 252, 324, 256, 320, 510, 326, 252, 322, 258, 604, 544, 318, 250, 694, 328};
// UNKNOWN C26FEEFB
DOWN - 3ª press:
Timestamp : 001094.983
Library : v2.8.6
Protocol : UNKNOWN
Code : 0x81893889 (25 Bits)
uint16_t rawData[49] = {338, 684, 284, 318, 250, 326, 254, 322, 256, 320, 248, 328, 250, 324, 254, 322, 258, 318, 514, 324, 254, 606, 278, 298, 280, 320, 522, 604, 280, 294, 284, 292, 276, 326, 252, 324, 256, 320, 512, 324, 254, 320, 248, 614, 544, 600, 274, 380, 336};
// UNKNOWN 81893889
Thank you for your time and for creating this library!
I don't know if it helps but I found this which, apparently, refers to an STB identical to mine.
Thanks.