Thanks for your advices (Nick_Pyner and HazardsMind), It seems useful, but I want use a Meshlium, because I have one of my degree project and I want that It works with arduino. (It's a personal project but I'm a little ambitious :D)
I think that if I get send the dataframe equals than waspmote It should works.
In waspmote, I send the information like this:
sprintf(aux,"-mac:%s%s -x:%s,y:%s,z:%s -temp:%s -bat: %d%c%c%c",macHigh,macLow,humT1,hum,pres,temp,PWR.getBatteryLevel(),'%','\r','\n');
paq_sent=(packetXBee*) calloc(1,sizeof(packetXBee));
paq_sent->mode=BROADCAST;
paq_sent->MY_known=0;
paq_sent->packetID=0x52;
paq_sent->opt=0;
xbeeZB.hops=0;
xbeeZB.setOriginParams(paq_sent,MAC_TYPE);
xbeeZB.setDestinationParams(paq_sent, "0013A2XXXXXXXXXX", aux, MAC_TYPE, DATA_ABSOLUTE);
xbeeZB.sendXBee(paq_sent);
free(paq_sent);
paq_sent = NULL;
Someone knows that it is posible in arduino.