-
Notifications
You must be signed in to change notification settings - Fork 2
/
library.json
47 lines (47 loc) · 1.15 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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "CFSM",
"version": "0.3.0",
"description": "A State Design Pattern for State Machines in C-Language",
"keywords": "state design pattern, FSM, C-Language",
"repository": {
"type": "git",
"url": "https://github.com/nhjschulz/cfsm.git"
},
"authors": [
{
"name": "Haju Schulz ",
"email": "[email protected]",
"url": "https://github.com/nhjschulz/cfsm",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://nhjschulz.github.io/cfsm",
"dependencies": {},
"frameworks": "*",
"platforms": "*",
"export": {
"include": [
"src/*.[ch]",
"doc/*.puml",
"examples/UnoBlink"
]
},
"examples": [
{
"name": "UnoBlink",
"base": "examples/UnoBlink",
"files": [
"platformio.ini",
"src/states/OffState.cpp",
"src/states/OffState.h",
"src/states/OnState.cpp",
"src/states/OnState.h",
"src/blinkdata.h",
"src/main.cpp",
"README.md"
]
}
]
}