Added receiving of Sartano devices with a TellStick Duo

This commit is contained in:
Micke Prag 2010-08-13 14:08:36 +00:00
parent b3f3ef00f8
commit ea865ff6f4

View file

@ -71,6 +71,9 @@ int DeviceSartano::turnOff(Controller *controller){
}
bool DeviceSartano::parameterMatches( const std::string &name, const std::string &value ) const {
if (name.compare("code") == 0 && value.compare(strCode) == 0) {
return true;
}
return false;
}