-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
library.json
executable file
·43 lines (43 loc) · 1.22 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
{
"name": "ESP-StepperMotor-Server",
"description": "A stepper motor control server for ESP32 modules that provides a Web UI, a REST API and a serial control interface. Support for limit switches and rotary encoders.",
"keywords": "stepper,motor,http,websocket,webserver,rest,api,serial,controller,server,device-control,esp32",
"authors": {
"name": "Paul Kerspe",
"maintainer": true
},
"repository": {
"type": "git",
"url": "https://github.com/pkerspe/ESP-StepperMotor-Server.git"
},
"version": "0.4.12",
"license": "MIT",
"frameworks": "arduino",
"platforms": [
"espressif32"
],
"dependencies": [{
"name": "ESP Async WebServer",
"version": "1.2.3",
"platforms": "espressif32"
},
{
"name": "ESP-FlexyStepper",
"version": "^1.4.7",
"platforms": "espressif32"
},
{
"name": "ArduinoJSON",
"version": "6.21.2",
"platforms": "arduino"
},
{
"name": "SPIFFS",
"version": "2.0.0",
"platforms": "arduino"
}
],
"examples": [
"[Ee]xamples/*/*.ino"
]
}