-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.json
More file actions
91 lines (91 loc) · 2.65 KB
/
info.json
File metadata and controls
91 lines (91 loc) · 2.65 KB
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
{
"json_version" : 2,
"identity": {
"author": "Fritz",
"author_email": "fritz.smh at gmail.com",
"tags": ["gps", "geolocalisation", "tracker"],
"dependencies": [ ],
"description": "Allow your smartphone or anything else to send GPS data to this plugin over an url.",
"domogik_min_version": "0.4.1",
"name": "geoloc",
"type": "plugin",
"version": "1.2"
},
"configuration": [
{
"key": "host",
"name": "Service ip or hostname",
"description": "Ip or hostname of the service which will make the url available.",
"default": "0.0.0.0",
"required": false,
"type": "ipv4"
},
{
"key": "port",
"name": "Service port",
"description": "Port of the service which will make the url available.",
"default": 40445,
"required": false,
"type": "integer",
"min_value" : 1025,
"max_value" : 65535
}
],
"device_types": {
"geoloc.position_degrees": {
"description": "GPS position",
"id": "geoloc.position",
"name": "GPS position",
"commands": [],
"sensors": ["position_degrees"],
"parameters": [
{
"key": "device",
"xpl": true,
"description": "The geolocated device id",
"type": "string"
}
]
}
},
"sensors": {
"position_degrees": {
"name": "GPS position in degrees",
"data_type": "DT_CoordD",
"conversion": "",
"incremental": false,
"timeout" : 0,
"history": {
"store": true,
"duplicate": false,
"max": 0,
"expire": 0,
"round_value": 0
}
}
},
"xpl_stats": {
"position_degrees": {
"name": "Position in degrees",
"schema": "sensor.basic",
"parameters": {
"static": [
{
"key": "type",
"value": "position_degrees"
}
],
"device": [],
"dynamic": [
{
"key": "current",
"ignore_values": "",
"sensor": "position_degrees"
}
]
}
}
},
"commands": {},
"xpl_commands": {}
}