mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-23 18:13:04 +08:00
- Rename component directory from lvgl_st7735s_use to lvgl_st7789_use - Update CMakeLists.txt to register new source files - Add comprehensive README documentation for ST7789 configuration - Add time_alarm module with SNTP synchronization and alarm management - Add sensors header for sensor abstraction layer
23 lines
406 B
C
23 lines
406 B
C
#include "wifi_manager.h"
|
|
#include "esp_log.h"
|
|
|
|
static const char *TAG = "wifi_manager";
|
|
|
|
esp_err_t wifi_manager_init(void)
|
|
{
|
|
ESP_LOGI(TAG, "wifi_manager_init (stub)");
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t wifi_manager_start(void)
|
|
{
|
|
ESP_LOGI(TAG, "wifi_manager_start (stub)");
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t wifi_manager_stop(void)
|
|
{
|
|
ESP_LOGI(TAG, "wifi_manager_stop (stub)");
|
|
return ESP_OK;
|
|
}
|