I don't understand why you are saying this. Network & protocol sections seemed appropriate for an RF related question. For the subject line I must admit I wasn't very inspired. I can try to find a better one if you think this one is misleading or inefficient.
I didn't post any code because I was sure the problem was related to my code (as it's very simple) or if it was related to my misunderstandard or the misfunction of my wireless sockets.
But here it is. I am using the RC-switch library and doing a very simple blinky-like sketch :
#include <RCSwitch.h>
#include <MicroView.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
pinMode(2, OUTPUT);
mySwitch.enableTransmit(2);
}
void loop() {
mySwitch.send(5396, 24);
delay(1000);
mySwitch.send(5393, 24);
delay(1000);
}