-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
35 lines (35 loc) · 1000 Bytes
/
extension.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
{
"name": "Current Consumption",
"apiVersion": "1.0.0",
"author": "Jenish Rudani",
"version": "1.0.0",
"description": "An extension for Saleae Logic Analyser that determines the area under curve of an analog voltage measurement against 18 Ohm resistor to determine average current consumption",
"extensions": {
"Average Current Consumption": {
"type": "AnalogMeasurement",
"entryPoint": "Current.Current",
"metrics": {
"Iavg": {
"name": "Current",
"notation": "I<sub>avg</sub>(V<sub>avg</sub>/18)",
"units": "A"
},
"Vavg": {
"name": "Voltage",
"notation": "V<sub>avg</sub>",
"units": "V"
},
"Imax": {
"name": "Current",
"notation": "I<sub>max</sub>(V<sub>max</sub>/18)",
"units": "A"
},
"Vmax": {
"name": "Voltage",
"notation": "V<sub>max</sub>",
"units": "V"
}
}
}
}
}