create light service, with splitted beacon and outdoor functions Signed-off-by: Peter Siegmund <mars3142@users.noreply.github.com>
16 lines
180 B
C
16 lines
180 B
C
#include "outdoor.h"
|
|
|
|
esp_err_t outdoor_init(void)
|
|
{
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t outdoor_start(void)
|
|
{
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t outdoor_stop(void)
|
|
{
|
|
return ESP_OK;
|
|
} |