16 lines
207 B
C
16 lines
207 B
C
#pragma once
|
|
|
|
#include "esp_err.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
esp_err_t lcd_module_init(void);
|
|
esp_err_t lcd_module_start_demo(void);
|
|
void lcd_module_deinit(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|