Und den Code kann ich dafür verwenden oder?
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
// Transmitter is connected to Arduino Pin #10
mySwitch.enableTransmit(10);
}
void loop() {
mySwitch.switchOn("11001", "01000");
// Wait a second
delay(1000);
// Switch off
mySwitch.switchOff("11001", "01000");
// Wait another second
delay(1000);
}