- /*
-
- INFLUXDB MODULE
-
- Copyright (C) 2017-2019 by Xose Pérez <xose dot perez at gmail dot com>
-
- */
-
- #include "espurna.h"
-
- #if INFLUXDB_SUPPORT
-
- bool idbSend(const char * topic, unsigned char id, const char * payload);
- bool idbSend(const char * topic, const char * payload);
- bool idbEnabled();
- void idbSetup();
-
- #endif // INFLUXDB_SUPPORT
-
|