Safe Sprinkler
Master/slave irrigation system (ESP-NOW + LoRaWAN)
Loading...
Searching...
No Matches
location_server.h
Go to the documentation of this file.
1#ifndef LOCATION_SERVER_H
2#define LOCATION_SERVER_H
3
4#include "esp_err.h"
5#include "node_cfg.h"
6
7#ifdef MASTER_NODE
11
12#include <stdbool.h>
13#include <stddef.h>
14#include <stdint.h>
15
16#endif
17
18#define MODULE_TAG "ACCESS POINT"
19
31esp_err_t registry_server_start(slave_data* shared_data);
32
33#ifdef MASTER_NODE
41esp_err_t registry_server_stop(void);
42#endif // MASTER_NODE
43#endif // LOCATION_SERVER_H
int registry_server_start(slave_data *shared_data)
Start the HTTP registry/config server.
Definition node_cfg.h:16