Send a keypress to a device on the CEC bus. The logical address of the device to send the message to. The key to send. True to wait for a response, false otherwise. True when the keypress was acked, false otherwise.
| 485 | /// <param name="wait">True to wait for a response, false otherwise.</param> |
| 486 | /// <returns>True when the keypress was acked, false otherwise.</returns> |
| 487 | bool SendKeypress(CecLogicalAddress destination, CecUserControlCode key, bool wait) |
| 488 | { |
| 489 | return !!m_libCec && m_libCec->SendKeypress((cec_logical_address)destination, (cec_user_control_code)key, wait); |
| 490 | } |
| 491 | |
| 492 | /// <summary> |
| 493 | /// Send a key release to a device on the CEC bus. |
nothing calls this directly
no test coverage detected