Mitsubishi kirigamine AC [RISOLTO]

uff! Allora ho rifatto i calcoli a mano seguendo la guida suddetta...e mi esce proprio C4D364800004....che è proprio il code che mi dava, quindi i conti tornano:

64800004
Decoded PANASONIC - Address: C4D3 Value: 64800004 (48 bits)
Raw (100): -21006 3500 -1650 450 -1250 500 -1200 500 -350 500 -350 500 -400 500 -1200 450 -400 500 -350 500 -1200 500 -1200 500 -400 500 -1200 500 -350 500 -350 500 -1200 500 -1250 450 -400 500 -1200 500 -1200 500 -350 500 -350 550 -1200 500 -350 500 -350 500 -1200 500 -350 500 -350 500 -400 500 -350 500 -350 500 -350 500 -350 500 -350 550 -350 450 -400 500 -350 500 -350 500 -400 450 -400 450 -400 500 -350 500 -350 500 -350 500 -400 500 -350 500 -1200 500 -350 500 -350 500

a questo punto ho sbagliato lo schema? ho usato un semplice led ir (anodo pin3, catodo GND)...ricordo che per la trasmissione, secondo libreria, il pin3 e quello da usare...

in definitiva il codice che ho usato:

/*
 * IRremote: IRsendDemo - demonstrates sending IR codes with IRsend
 * An IR LED must be connected to Arduino PWM pin 3.
 * Version 0.1 July, 2009
 * Copyright 2009 Ken Shirriff
 * http://arcfn.com
 * JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post)
 */
#include <IRremote.h>
 
#define PanasonicAddress      0x4004     // Panasonic address (Pre data) 
#define PanasonicPower        0x100BCBD  // Panasonic Power button

#define JVCPower              0xC5E8

IRsend irsend;

void setup()
{
}

void loop() {
  irsend.sendPanasonic(0xC4D36480, 0x00040000); // (32 bit il primo + 16)->utili il resto di riempimento 
  
  //irsend.sendJVC(JVCPower, 16,0); // hex value, 16 bits, no repeat
  //delayMicroseconds(50); // see http://www.sbprojects.com/knowledge/ir/jvc.php for information
  //irsend.sendJVC(JVCPower, 16,1); // hex value, 16 bits, repeat
  //delayMicroseconds(50);
  delay(2000);
}