Tizen Native API
5.0
|
The IR API provides functions to control a IR transmitter.
#include <device/ir.h>
The IR API provides the way to get the information whether IR is available and transmit IR command.
This API is related with the following feature:
It is recommended to design feature related codes in your application for reliability.
You can check if a device supports the related features for this API by using System Information, thereby controlling the procedure of your application.
To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.
More details on featuring your application can be found from feature element description.
Functions | |
int | device_ir_is_available (bool *available) |
Gets the information whether IR module is available. | |
int | device_ir_transmit (int carrier_frequency, int *pattern, int size) |
Transmits IR command. |
int device_ir_is_available | ( | bool * | available | ) |
Gets the information whether IR module is available.
[out] | available | The information whether IR is available |
0
on success, otherwise a negative error value DEVICE_ERROR_NONE | Successful |
DEVICE_ERROR_INVALID_PARAMETER | Invalid parameter |
DEVICE_ERROR_PERMISSION_DENIED | Permission denied |
DEVICE_ERROR_OPERATION_FAILED | Operation failed |
DEVICE_ERROR_NOT_SUPPORTED | Not supported device |
int device_ir_transmit | ( | int | carrier_frequency, |
int * | pattern, | ||
int | size | ||
) |
Transmits IR command.
[in] | carrier_frequency | Carrier frequency to transmit IR command (Hertz) |
[in] | pattern | Integer array of IR command |
[in] | size | Size of IR command pattern |
0
on success, otherwise a negative error value DEVICE_ERROR_NONE | Successful |
DEVICE_ERROR_INVALID_PARAMETER | Invalid parameter |
DEVICE_ERROR_PERMISSION_DENIED | Permission denied |
DEVICE_ERROR_OPERATION_FAILED | Operation failed |
DEVICE_ERROR_NOT_SUPPORTED | Not supported device |