SensESP 3.0.0-beta.3
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
sensesp.h
Go to the documentation of this file.
1#ifndef SENSESP_H
2#define SENSESP_H
3
4#include <ReactESP.h>
5
7
8#if ESP8266
9#error \
10 "ESP8266 isn't supported by SensESP version 2. To compile an existing project, add @^1.0.0 to the SensESP depdenency in platformio.ini."
11#endif
12
13#ifndef CORE_DEBUG_LEVEL
14#error \
15 "SensESP v3 requires CORE_DEBUG_LEVEL to be defined. See https:\/\/signalk.org/SensESP/pages/migration/."
16#endif
17
18namespace sensesp {
19
20typedef std::function<void()> void_cb_func;
21
22} // namespace sensesp
23
24#endif
std::function< void()> void_cb_func
Definition sensesp.h:20