Skip to content

Commit bd29a48

Browse files
committed
Add PlatformIO manifest file
1 parent 097072e commit bd29a48

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

library.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "BytebeamArduino",
3+
"version": "1.0.0",
4+
"description": "A small Arduino Library for Bytebeam Cloud that just works. This library simplifies the process of communicating with Bytebeam cloud backend.",
5+
"keywords": "mqtt, http, gsm, iot, arduino, espressif32, espressif8266, bytebeam, device-management, ota-firmware-updates, cloud-logging",
6+
"license": "Apache-2.0",
7+
"authors": [
8+
{
9+
"name": "Mayank Narang",
10+
"url": "https://github.com/mayankbytebeam",
11+
"maintainer": true
12+
}
13+
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/bytebeamio/bytebeam-arduino-sdk"
17+
},
18+
"homepage": "https://bytebeam.io/docs/arduino",
19+
"frameworks": "arduino",
20+
"platforms": [
21+
"espressif8266",
22+
"espressif32"
23+
],
24+
"headers": "BytebeamArduino.h",
25+
"dependencies": [
26+
{
27+
"owner": "knolleary",
28+
"name": "PubSubClient",
29+
"version": "^2.8"
30+
},
31+
{
32+
"owner": "bblanchon",
33+
"name": "ArduinoJson",
34+
"version": "^6.20.1"
35+
},
36+
{
37+
"owner": "arduino-libraries",
38+
"name": "NTPClient",
39+
"version": "^3.2.1"
40+
}
41+
]
42+
}

0 commit comments

Comments
 (0)