Collection of functions that provide integration with smart home stuff.
So far, the only integration is some minimal integration with a blink home camera setup. Thanks to https://github.com/MattTW/BlinkMonitorProtocol for the detailed API guide.
curl -XPOST "https://<id>.execute-api.<region>.amazonaws.com/prod/blinkCheckAllArmed" \
-H "Content-Type: application/json" \
-d '{
"email": "<email adress here>",
"password": "<password here>"
}'
curl -XPOST "https://<id>.execute-api.<region>.amazonaws.com/prod/blinkGetTemperature" \
-H "Content-Type: application/json" \
-d '{
"cameras": [
"<NameOfCamera1>",
"<NameOfCamera2>"
],
"email": "<email adress here>",
"password": "<password here>"
}'
High level architecture diagram
PRs are very welcome, but for any big changes or new features please open an issue to discuss first.