-
Notifications
You must be signed in to change notification settings - Fork 4
/
library.json
112 lines (112 loc) · 3.04 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "pzem-edl",
"frameworks": "arduino",
"platforms": ["espressif32"],
"version": "1.2.0",
"keywords": "peacefair, pzem, powermeter, pzem004t, pzem003, pzem-017, pzem-017",
"description": "PZEM event-driven library - an ESP32 Arduino/esp-idf library implementing communication interface for PeaceFair PZEM-004Tv3.0/PZEM-003 Energy monitor modules via Modbus-RTU proto",
"url": "https://github.com/vortigont/pzem-edl",
"authors": [
{
"name": "Emil Muratov",
"url": "https://github.com/vortigont",
"email": "gpm@hotplug.ru",
"maintainer": true
}
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/vortigont/pzem-edl.git"
},
"build": {
"flags": "-std=gnu++14",
"unflags": "-std=gnu++11"
},
"export": {
"include":
[
"examples/*",
"src/*",
"CHANGELOG.md",
"README.md",
"CMakeLists.txt",
"library.json",
"library.properties",
"LICENSE"
]
},
"examples": [
{
"name": "Single PZEM004",
"base": "examples/01_SinglePZEM004",
"files": [
"platformio.ini",
"src/main.h",
"src/main.cpp",
"src/src.ino"
]
},
{
"name": "Single PZEM003",
"base": "examples/02_SinglePZEM003",
"files": [
"platformio.ini",
"src/main.h",
"src/main.cpp",
"src/src.ino"
]
},
{
"name": "Multiple PZEM004",
"base": "examples/03_MultiplePZEM004",
"files": [
"platformio.ini",
"src/main.h",
"src/main.cpp",
"src/src.ino"
]
},
{
"name": "Mixed PZEM Pool",
"base": "examples/04_MixedPool",
"files": [
"platformio.ini",
"src/main.h",
"src/main.cpp",
"src/src.ino"
]
},
{
"name": "TimeSeries",
"base": "examples/05_TimeSeries",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "PZEM CLI",
"base": "examples/pzem_cli",
"files": [
"platformio.ini",
"README.md",
"src/main.h",
"src/main.cpp",
"src/src.ino"
]
},
{
"name": "esp-idf example",
"base": "examples/esp-idf",
"files": [
"CMakeLists.txt",
"platformio.ini",
"sdkconfig.wemos_d1_mini32",
"src/main.h",
"src/main.cpp",
"src/CMakeLists.txt"
]
}
]
}