Change the physical address (HDMI port) of the CEC adapter. libCEC will try to autodetect the physical address when connecting. If it did, it's set in libcec_configuration. The CEC adapter's new physical address. True when the physical address was set successfully, false otherwise.
| 207 | /// <param name="physicalAddress">The CEC adapter's new physical address.</param> |
| 208 | /// <returns>True when the physical address was set successfully, false otherwise.</returns> |
| 209 | bool SetPhysicalAddress(uint16_t physicalAddress) |
| 210 | { |
| 211 | return !!m_libCec && m_libCec->SetPhysicalAddress(physicalAddress); |
| 212 | } |
| 213 | |
| 214 | /// <summary> |
| 215 | /// Power on the given CEC capable devices. If CECDEVICE_BROADCAST is used, then wakeDevice in libcec_configuration will be used. |
no test coverage detected