Congratulations with your project! It looks good.
I am wanting do to something similar, controlling my remote switches from my Arduino.
Do you know the use/meaning of device, address and system code in the examples below, taken from the library examples:
//Switch off KaKu-device 10 on address M
kaKuSwitch.sendSignal('M',10,false);
//Switch on Action-device B on system code 1.
actionSwitch.sendSignal(1,'B',true);
//Switch on Blokker-device 7.
blokkerSwitch.sendSignal(7,true);
I am trying with a remote switch of another make and I am completely lost as of how to modify the code.
Thanks.