Skip to content

Commit

Permalink
Use official Homie release. Closes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
rroemhild committed Apr 1, 2018
1 parent 36954b6 commit 1fc3056
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ Microhomie

|build-status| |pypi|

A MicroPython implementation of `Homie <https://github.com/homieiot/convention>`_, a lightweight MQTT convention for the IoT.

A MicroPython implementation of the `Homie <https://github.com/marvinroger/homie>`_ MQTT convention version ``2.1.0``.
Currently Microhomie implements `Homie v2.0.1 <https://github.com/homieiot/convention/releases/tag/v2.0.1>`_

This project is in beta stage.
Microhomie version: ``0.2.1``

*This project is in beta stage.*


Known issues
Expand All @@ -23,7 +26,6 @@ Install
You can get the detailed installation instructions here: http://microhomie.readthedocs.io/



Local Development setup
-----------------------

Expand Down
2 changes: 1 addition & 1 deletion homie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def publish_properties(self):
"""publish device and node properties"""
# node properties
properties = (
Property(b'$homie', b'2.1.0', True),
Property(b'$homie', b'2.0.1', True),
Property(b'$online', b'true', True),
Property(b'$name', self.settings.DEVICE_NAME, True),
Property(b'$fw/name', self.settings.DEVICE_FW_NAME, True),
Expand Down

0 comments on commit 1fc3056

Please sign in to comment.