-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
94 lines (94 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "corelib",
"version": "1.1.8",
"description": "Library for handling storage, wifi connectivity, IoT Core connectivity, OTA update and WiFi cred changes on ESP8266 and ESP32. ",
"keywords": "wifi,storage,iot-core,app-communication,status-led,fota",
"authors": {
"name": "Apoorva Singh",
"email": "[email protected]"
},
"dependencies": {
"256dpi/MQTT": "2.5.0",
"googlecloudplatform/Google Cloud IoT Core JWT": "1.1.11",
"bblanchon/ArduinoJson": "6.17.3",
"jandelgado/JLed": "4.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/qube-ai/corelib"
},
"frameworks": [
"arduino"
],
"platforms": [
"espressif8266",
"espressif32"
],
"examples": [
{
"name": "1_storage",
"base": "examples/esp32/1_storage",
"files": [
"storage_example.cpp"
]
},
{
"name": "2_wifi_manager",
"base": "examples/esp32/2_wifi_manager",
"files": [
"wifi_manager_example.cpp"
]
},
{
"name": "3_cloud_iotcore",
"base": "examples/esp32/3_cloud_iotcore",
"files": [
"cloud_iotcore_example.cpp"
]
},
{
"name": "4_message_handler",
"base": "examples/esp32/4_message_handler",
"files": [
"message_handler_example.cpp"
]
},
{
"name": "5_device_state",
"base": "examples/esp32/5_device_state",
"files": [
"device_state_example.cpp"
]
},
{
"name": "6_fota",
"base": "examples/esp32/6_fota",
"files": [
"fota_example.cpp"
]
},
{
"name": "7_gateway",
"base": "examples/esp32/7_gateway",
"files": [
"gateway_example.cpp",
"init.cpp"
]
},
{
"name": "8_status_led",
"base": "examples/esp32/8_status_led",
"files": [
"status_led_example.cpp"
]
},
{
"name": "5_device_state-esp8266",
"base": "examples/esp8266/5_device_state",
"files": [
"device_state_example.cpp",
"init.cpp"
]
}
]
}