V0.6.0 Arroyo Toad
This commit is contained in:
82
Documentation/Config.md
Normal file
82
Documentation/Config.md
Normal file
@@ -0,0 +1,82 @@
|
||||
# Config File
|
||||
```json
|
||||
{
|
||||
// Version of file
|
||||
"version": 1,
|
||||
|
||||
// Environments
|
||||
"environments": [
|
||||
{
|
||||
// Name of the location
|
||||
"name": "abcd",
|
||||
"physicalData": [
|
||||
{
|
||||
"dataType": "Temperature",
|
||||
"value": 293.15 // Kelvin
|
||||
},
|
||||
{
|
||||
"dataType": "Humidity",
|
||||
"value": 30.0 // Percentage
|
||||
}
|
||||
],
|
||||
"devices": [
|
||||
{
|
||||
// Between 0 and 999 included
|
||||
"deviceID": 10, // *
|
||||
"dataType": "Temperature",
|
||||
"location:": { //*
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"dutyCycle": 1000, // *
|
||||
"realSensors": true, // *
|
||||
},
|
||||
{
|
||||
"dataType": "Temperature",
|
||||
"realSensors": true, // *
|
||||
|
||||
// Between 0 and 999 included
|
||||
"number": 10 // *
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
// Name of the location
|
||||
"name": "abcde",
|
||||
"physicalData": [
|
||||
{
|
||||
"dataType": "Temperature",
|
||||
"value": 293.15 // Kelvin
|
||||
},
|
||||
{
|
||||
"dataType": "Humidity",
|
||||
"value": 30.0 // Percentage
|
||||
}
|
||||
],
|
||||
"devices": [
|
||||
{
|
||||
// Between 0 and 999 included
|
||||
"deviceID": 10, // *
|
||||
"dataType": "Temperature",
|
||||
"location:": { //*
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"dutyCycle": 1000, // *
|
||||
"realSensors": true, // *
|
||||
},
|
||||
{
|
||||
"dataType": "Temperature",
|
||||
"realSensors": true, // *
|
||||
|
||||
// Between 0 and 999 included
|
||||
"number": 10 // *
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user