Arduino AudioKit HAL
display_service.h
1 /**
2  * @brief Dumy empty implementation to prevent compile errors
3  * @author Phil Schatzmann
4  */
5 #pragma once
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 typedef struct display_service_impl *display_service_handle_t;
12 typedef void* display_service_config_t;
13 
14 static display_service_handle_t display_service_create(display_service_config_t *cfg){}
15 static esp_err_t display_service_set_pattern(void *handle, int disp_pattern, int value){}
16 static esp_err_t display_destroy(display_service_handle_t handle){}
17 
18 #ifdef __cplusplus
19 }
20 #endif
21