forked from JoaoLopesF/RemoteDebug
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlibrary.json
executable file
·48 lines (48 loc) · 1.39 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
{
"name": "RemoteDebug",
"keywords": "debug, remote, telnet, WiFi, websockets, dubugging, monitor",
"description": "A library for ESP2866 and ESP32 for debuging projects over WiFi.\n\nRemoteDebug sets up a TCP/IP server, that you connect to using telnet or websockets (using a dedicated web app).\nFork of unmaintained Joao Lopes'es RemoteDebug library with few major issues resolved.",
"repository": {
"type": "git",
"url": "https://github.com/karol-brejna-i/RemoteDebug.git"
},
"license": "MIT",
"frameworks": "arduino",
"platforms": "espressif32, espressif8266",
"authors": [
{
"name": "Karol Brejna",
"maintainer": true
},
{
"name": "Joao Lopes"
}
],
"examples": [
{
"name": "Simple",
"base": "examples/simple",
"files": [
"simple.ino"
]
},
{
"name": "Debugger",
"base": "examples/RemoteDebug_Debugger",
"files": [
"RemoteDebug_Debugger.ino"
]
},
{
"name": "Advanced",
"base": "examples/RemoteDebug_Advanced",
"files": [
"RemoteDebug_Advanced.ino"
]
}
],
"version": "4.0.1",
"dependencies": {
"links2004/WebSockets": "2.3.4"
}
}