mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 19:47:02 +03:00
21 lines
508 B
C
21 lines
508 B
C
/*
|
|
* (c) Philippe G. 2019, philippe_44@outlook.com
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/ringbuf.h"
|
|
|
|
typedef enum {IR_NEC, IR_RC5} infrared_mode_t;
|
|
typedef void (*infrared_handler)(uint16_t addr, uint16_t cmd);
|
|
|
|
void infrared_receive(RingbufHandle_t rb, infrared_handler handler);
|
|
void infrared_init(RingbufHandle_t *rb, int gpio, infrared_mode_t mode);
|
|
|