2022-02-25 15:22:58 +00:00
|
|
|
#include <furi_hal_infrared.h>
|
|
|
|
#include <infrared.h>
|
2021-08-05 21:11:35 +00:00
|
|
|
#include <stdint.h>
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2022-02-25 15:22:58 +00:00
|
|
|
* Send message over INFRARED.
|
2021-07-16 16:43:54 +00:00
|
|
|
*
|
|
|
|
* \param[in] message - message to send.
|
|
|
|
* \param[in] times - number of times message should be sent.
|
|
|
|
*/
|
2022-02-25 15:22:58 +00:00
|
|
|
void infrared_send(const InfraredMessage* message, int times);
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Send raw data through infrared port.
|
|
|
|
*
|
|
|
|
* \param[in] timings - array of timings to send.
|
|
|
|
* \param[in] timings_cnt - timings array size.
|
|
|
|
* \param[in] start_from_mark - true if timings starts from mark,
|
|
|
|
* otherwise from space
|
|
|
|
*/
|
2022-02-25 15:22:58 +00:00
|
|
|
void infrared_send_raw(const uint32_t timings[], uint32_t timings_cnt, bool start_from_mark);
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Send raw data through infrared port, with additional settings.
|
|
|
|
*
|
|
|
|
* \param[in] timings - array of timings to send.
|
|
|
|
* \param[in] timings_cnt - timings array size.
|
|
|
|
* \param[in] start_from_mark - true if timings starts from mark,
|
|
|
|
* otherwise from space
|
|
|
|
* \param[in] duty_cycle - duty cycle to generate on PWM
|
|
|
|
* \param[in] frequency - frequency to generate on PWM
|
|
|
|
*/
|
2022-02-25 15:22:58 +00:00
|
|
|
void infrared_send_raw_ext(
|
2022-01-05 16:10:18 +00:00
|
|
|
const uint32_t timings[],
|
|
|
|
uint32_t timings_cnt,
|
|
|
|
bool start_from_mark,
|
|
|
|
uint32_t frequency,
|
|
|
|
float duty_cycle);
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|