* Switch a remote switch on (Type D REV) * * @param sGroup Code of the switch group (A,B,C,D) * @param nDevice Number of the switch itself (1..3) */
| 123 | * @param nDevice Number of the switch itself (1..3) |
| 124 | */ |
| 125 | void RCSwitch::switchOn(char sGroup, int nDevice) { |
| 126 | this->sendTriState( this->getCodeWordD(sGroup, nDevice, true) ); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Switch a remote switch off (Type D REV) |
nothing calls this directly
no test coverage detected