File tree Expand file tree Collapse file tree 4 files changed +19
-51
lines changed Expand file tree Collapse file tree 4 files changed +19
-51
lines changed Original file line number Diff line number Diff line change 3936
3936
#define MICS2710_SUPPORT 1
3937
3937
#define MICS5525_SUPPORT 1
3938
3938
3939
- // MAX6675 14 11 10
3940
- #ifndef MAX6675_SUPPORT
3941
- #define MAX6675_SUPPORT 1
3942
- #endif
3943
- #define MAX6675_CS_PIN 14
3944
- #define MAX6675_SO_PIN 11
3945
- #define MAX6675_SCK_PIN 10
3939
+ // MAX6675 14 11 10
3940
+ #define MAX6675_SUPPORT 1
3941
+ #define MAX6675_CS_PIN 14
3942
+ #define MAX6675_SO_PIN 11
3943
+ #define MAX6675_SCK_PIN 10
3944
+
3945
+ #define INFLUXDB_SUPPORT 1
3946
3946
3947
3947
#elif defined(TRAVIS02 )
3948
3948
4054
4054
#define PULSEMETER_SUPPORT 1
4055
4055
4056
4056
// Test non-default modules
4057
+ #define MDNS_CLIENT_SUPPORT 1
4058
+ #define NOFUSS_SUPPORT 1
4059
+ #define UART_MQTT_SUPPORT 1
4060
+ #define INFLUXDB_SUPPORT 1
4061
+ #define IR_SUPPORT 1
4062
+ #define RF_SUPPORT 1
4063
+ #define OTA_MQTT_SUPPORT 1
4057
4064
#define LLMNR_SUPPORT 1
4058
4065
#define NETBIOS_SUPPORT 1
4059
4066
#define SSDP_SUPPORT 1
4060
- #define RF_SUPPORT 1
4061
4067
4062
4068
#else
4063
4069
Original file line number Diff line number Diff line change @@ -8,12 +8,11 @@ Copyright (C) 2017-2019 by Xose Pérez <xose dot perez at gmail dot com>
8
8
9
9
#if INFLUXDB_SUPPORT
10
10
11
- #include " ESPAsyncTCP.h"
12
-
13
- #include " libs/SyncClientWrap.h"
11
+ #include < ESPAsyncTCP.h>
12
+ #include < SyncClient.h>
14
13
15
14
bool _idb_enabled = false ;
16
- SyncClientWrap * _idb_client;
15
+ std::unique_ptr<SyncClient> _idb_client = nullptr ;
17
16
18
17
// -----------------------------------------------------------------------------
19
18
@@ -116,7 +115,7 @@ bool idbEnabled() {
116
115
117
116
void idbSetup () {
118
117
119
- _idb_client = new SyncClientWrap ();
118
+ _idb_client = std::make_unique<SyncClient> ();
120
119
121
120
_idbConfigure ();
122
121
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ lib_deps =
106
106
https://github.com/xoseperez/eeprom_rotate# 0.9.2
107
107
Embedis
108
108
https://github.com/plerup/espsoftwareserial# 3.4.1
109
- https://github.com/me-no-dev/ESPAsyncTCP# 7e9ed22
109
+ https://github.com/me-no-dev/ESPAsyncTCP# 75c2513c
110
110
https://github.com/me-no-dev/ESPAsyncWebServer# b0c6144
111
111
https://bitbucket.org/xoseperez/fauxmoesp.git# 3.1.0
112
112
https://github.com/xoseperez/hlw8012.git# 1.1.0
You can’t perform that action at this time.
0 commit comments