forked from marvinroger/async-mqtt-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.json
45 lines (45 loc) · 1.18 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "AsyncMqttClient",
"keywords": "iot, home, automation, async, mqtt, client, esp8266",
"description": "An Arduino for ESP8266 / ESP32 asynchronous MQTT client implementation",
"authors":
{
"name": "Marvin ROGER",
"url": "https://www.marvinroger.fr"
},
"repository":
{
"type": "git",
"url": "https://github.com/kwrazi/async-mqtt-client.git"
},
"version": "0.9.0",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif32"],
"dependencies": [
{
"name": "ESPAsyncTCP",
"version": "https://github.com/me-no-dev/ESPAsyncTCP.git",
"platforms": "espressif8266"
},
{
"name": "AsyncTCP",
"version": "https://github.com/kwrazi/AsyncTCP.git",
"platforms": "espressif32"
}
],
"build": {
"flags": [
"-std=gnu++17",
"-ffunction-sections",
"-Wl,--gc-sections",
"-fexceptions",
"-DPIO_FRAMEWORK_ESP_IDF_ENABLE_EXCEPTIONS",
"-DPIO_FRAMEWORK_ARDUINO_ENABLE_EXCEPTIONS",
"-DBOARD_HAS_PSRAM",
"-mfix-esp32-psram-cache-issue",
"-DCONFIG_ARDUHAL_ESP_LOG",
"-DCONFIG_ARDUHAL_LOG_COLORS",
"-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_WARN"
]
}
}