Mercurial > code > home > repos > homeauto
view README.md @ 1574:6618d481421c dependabot/pip/service/colplay/pillow-8.1.1
Bump pillow from 3.1.1 to 8.1.1 in /service/colplay
Bumps [pillow](https://github.com/python-pillow/Pillow) from 3.1.1 to 8.1.1.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst)
- [Commits](https://github.com/python-pillow/Pillow/compare/3.1.1...8.1.1)
Signed-off-by: dependabot[bot] <support@github.com>
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
---|---|
date | Thu, 18 Mar 2021 20:13:07 +0000 |
parents | a3dc6a31590f |
children |
line wrap: on
line source
# Goals Make rules easy to add and experiment with. Be transparent and debuggable. Don't pack things into names that need to be parsed out. Prefer RDF and URIs over ad-hoc structures and ids. Integrate with lots of outside data sources. ## Input Services create RDF graphs (legacy) and send MQTT messages (esp32 nodes, and eventually everything) `mqtt_to_rdf` gathers those inputs; writes some of them to influxdb; turns them into an RDF graph `collector` takes multiple RDF graphs and merges them into new combinations ## Reasoning `reasoning` takes an RDF graph and N3 rules; emits an RDF graph (and makes HTTP PUT and POST requests) ## Output `rdf_to_mqtt` takes RDF graph and emits MQTT messages (`reasoning` does some of its own output actions) Services (sometimes, the same ones that gathered input) perform home automation outputs. ## Protocols A SyncedGraph can be updated on a server such that the updates (as Patch objects) are sent as JSON-LD over a long-running SSE connection. There's a Patches-over-websocket connector in the `rdfdb` repo. MQTT: Matching a lot of what esphome.io has, which maybe is compatible with homeassistant?