TCP connection of Wifly conflict IRremote.h

TCP connection of Wifly did not work correctly when I used “irsend.sendRaw()”.

“irsend.sendRaw()” is a function in IRremote.h

I want turn on a air-conditioning over the Internet using wifly and infrared LED.

My code:

#include “Wifly.h”
#include <SoftwareSerial.h>
#include <IRremote.h>

WiflyClass Wifly(6,7);
IRsend irsend;

if ( Wifly.connect( “…”,“80”) )
{
Wifly.writeToSocket(“GET… HTTP/1.1\r\n”);
Wifly.writeToSocket(“Host:…\r\n”);
Wifly.writeToSocket( HTTP_POST_HEADERS);
Wifly.writeToSocket(“Content-Length: 0\r\n”);
Wifly.writeToSocket(“Connection: close\r\n”);
Wifly.writeToSocket("\r\n");
}

if (!Wifly.find("“value”:1"))
{
irsend.sendRaw(rawCodes_ac_open1,73, 38);

}