binarybucks / homA

An extensible framework for the smart home
Eclipse Public License 1.0
137 stars 25 forks source link

Alternative web interface and rule engine from Wiren Board project #140

Open evgeny-boger opened 9 years ago

evgeny-boger commented 9 years ago

Hi folks!

We are using (albeit slightly modified) homA MQTT conventions in Wiren Board software. Wiren Board is Linux-based automation controller. The on-board peripherals and external devices are supported by diverse set of userspace "drivers" written on C++, Python, Go and even Bash. The MQTT and homA conventions were ideal for this task so thank you for creating it :)

Anyway, some time ago we decided to create our own web interface for our system, since we wanted more features and extensibility. It's written using Angular.js and Bootstrap for default UI. It also should be backward-compatible with homA. Github repo: https://github.com/contactless/homeui/ , demo: http://demo.contactless.ru

Another interesting thing we created is wb-rules - rule engine for Wiren Board. It's written using Go and is fast enough to run on embedded hardware with limited RAM. The rules are written in JavaScript. The github repo: https://github.com/contactless/wb-rules . Some examples: http://contactless.ru/wiki/index.php/%D0%94%D0%B2%D0%B8%D0%B6%D0%BE%D0%BA_%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D0%BB_wb-rules . Unfortunately, the documentation is in Russian only for the moment. The rule engine is again should be compatible with original homA conventions.

Our extensions of homA conventions are mostly new meta types, the full list is here: https://github.com/contactless/homeui/blob/contactless/conventions.md .

Feedback and pull requests are welcome :)