| 324 | } |
| 325 | |
| 326 | string ValueBitSet::GetBitHelp |
| 327 | ( |
| 328 | uint8 _idx |
| 329 | ) |
| 330 | { |
| 331 | if (isValidBit(_idx)) { |
| 332 | return Localization::Get()->GetValueItemHelp(m_id.GetCommandClassId(), m_id.GetIndex(), -1, _idx); |
| 333 | } |
| 334 | Log::Write(LogLevel_Warning, m_id.GetNodeId(), "SetBitHelp: Bit %d is not valid with BitMask %d", _idx, m_BitMask); |
| 335 | return ""; |
| 336 | } |
| 337 | |
| 338 | bool ValueBitSet::SetBitHelp |
| 339 | ( |
no test coverage detected