Power on the given CEC capable devices. If CECDEVICE_BROADCAST is used, then wakeDevice in libcec_configuration will be used. The logical address to power on. True when the command was sent successfully, false otherwise.
| 217 | /// <param name="logicalAddress">The logical address to power on.</param> |
| 218 | /// <returns>True when the command was sent successfully, false otherwise.</returns> |
| 219 | bool PowerOnDevices(CecLogicalAddress logicalAddress) |
| 220 | { |
| 221 | return !!m_libCec && m_libCec->PowerOnDevices((cec_logical_address) logicalAddress); |
| 222 | } |
| 223 | |
| 224 | /// <summary> |
| 225 | /// Put the given CEC capable devices in standby mode. If CECDEVICE_BROADCAST is used, then standbyDevices in libcec_configuration will be used. |
nothing calls this directly
no test coverage detected