-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
67 lines (56 loc) · 1.62 KB
/
config.yml
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
#Pressure correction so that it will match pressure on sealevel.
#Correction in Pa
#If Correction is 0 then it is stored what is received from RuuviTag
#Some idea can be taken from here: https://www.mide.com/air-pressure-at-altitude-calculator
Pressure:
Correction: 1300
#Location of InfluxDB
Database:
ConnectionString: http://localhost:8086
#
# InfluxDB 2.X
#
# Change these to match your DB configuration
#
Org: Org-name
#Token needs to have write permission to bucket
Token: Users_token
Bucket: weather
#
#InfluxDB 1.8
#
####
#### Comment all rows under InfluxDB 2.x if you are using InfluxDB 1.8 ####
####
#
#If database does not have authetication keep Token commented
#Otherwise uncomment next row and provide username and password to use for authetication
#Token: <username>:<password>
#
#Bucket has database name to store measurements, uncomment for InfluxDB1,8
#Bucket: weather
#Storing interval in seconds
#Default is store next measurement after 15s send by the same RuuviTag sensors
#Set to 0 to store all measurements
Measurements:
StoreDelay: 15
#
#Data
#
#Common tag for all Ruuvitag sensors
Address: "YourAddress"
#List of Ruuvitag sensors to be stored to DB
#If sensor is not on the list it won't be stored to DB
#MAC addresses are without leading zeros!
Sensors:
- "aa:1e:7b:f3:yy:1"
- "bb:e3:18:33:yy:xx"
- "cc:5a:86:8d:yy:xx"
#Location tag for each Ruuvitag
#Both MAC and Location tag can be used to separate each Ruuvitag sensors in DB
"aa:e3:18:33:yy:1":
Location: "Outside"
"bb:1e:7b:f3:yy:xx":
Location: "Sauna"
"cc:5a:86:8d:yy:xx":
Location: "Inside"