-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from chaveiro/master
Bug fix
- Loading branch information
Showing
12 changed files
with
621 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
{ | ||
"name": "Air Sensor", | ||
"category": "Gtronica", | ||
"group": "Custom", | ||
"description": "Automatic inputs and feeds creation for IKEA Vindriktning + BME280 with a Tasmota device inside and websend rules.", | ||
"inputs": [ | ||
{ | ||
"name": "T", | ||
"description": "Temperature", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "Temperature" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "H", | ||
"description": "Humidity", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "Humidity" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "P", | ||
"description": "Pressure", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "Pressure" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "PM1", | ||
"description": "PM1", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "PM1" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "PM2", | ||
"description": "PM2.5", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "PM2" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "PM10", | ||
"description": "PM10", | ||
"processList": [ | ||
{ | ||
"process": "log_to_feed", | ||
"arguments": { | ||
"type": "ProcessArg::FEEDID", | ||
"value": "PM10" | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"feeds": [ | ||
{ | ||
"name": "Temperature", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "ºC" | ||
}, | ||
{ | ||
"name": "Humidity", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "%" | ||
}, | ||
{ | ||
"name": "Pressure", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "hPa" | ||
}, | ||
{ | ||
"name": "PM1", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "µg/m³" | ||
}, | ||
{ | ||
"name": "PM2", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "µg/m³" | ||
}, | ||
{ | ||
"name": "PM10", | ||
"type": "DataType::REALTIME", | ||
"engine": "Engine::MYSQL", | ||
"unit": "µg/m³" | ||
} | ||
] | ||
} |
Oops, something went wrong.