homieiot / homie-esp8266

💡 ESP8266 framework for Homie, a lightweight MQTT convention for the IoT
http://homieiot.github.io/homie-esp8266
MIT License
1.36k stars 308 forks source link

Consider go stable #18

Closed marvinroger closed 8 years ago

marvinroger commented 8 years ago

The API is quite complete and the overall stability is good (didn't run into any troubles so far, after weeks of continuous use). Docs are up. I guess it's almost time to release a stable version.

But before:

furyfire commented 8 years ago

During config mode there should be a way to fetch homie version, firmware name and firmware version. The web interface does not currently have any means of reading out this data.

marvinroger commented 8 years ago

Good point. What about a GET /info endpoint? Maybe /device-info? The latter sounds cooler.

marvinroger commented 8 years ago

The nodes might also be exposed, like so:

{
  "homie_version": "1.0.0",
  "firmware": {
    "name": "awesome-light",
    "version": "1.0.0"
  },
  "nodes": [
    {
      "id": "light",
      "type": "light"
    }
  ]
}
marvinroger commented 8 years ago

@furyfire , latest git rev exposes a GET /device-info that responds the above json plus a device_id property. Anything else?

furyfire commented 8 years ago

Amazing work! I'll be back at my desk with a nodemcu kit tomorrow afternoon to test it all!

marvinroger commented 8 years ago

@furyfire @enavarro222 Guys, I've been using it in my home for weeks without interruption, and so far everything is good. I am definitely going to bump it to 1.0.0, but if you are using it, did you encounter any stability issues?

furyfire commented 8 years ago

All good for me. The only issues I have are with SSL since I still use arduino esp8266 2.0

Anyone else using platformio?

marvinroger commented 8 years ago

You can use 2.1.0, it is released on the stable channel now, as you wanted!

I am not at this time, but the library is available on pio.

marvinroger commented 8 years ago

And 2.1.0 is available on pio

enavarro222 commented 8 years ago

I got a working firmware for a NeoPixel based esp8266 lamp for two weeks... But it's still on my shelve, I got no time to finish it (hardware staff) and install it "in prod". So no real test for now.

However everything seems nice. I use events with a custom Homie status notification, just work's fine. I just notice a limitation with MQTT msg size, but that's an issue with PubSubClient not Homie. No time to investigate it further for now...

furyfire commented 8 years ago

Can confirm SSL is working as of esp8266-Arduino 2.1.0 :+1:

marvinroger commented 8 years ago

Great! v1.0.0 on its way!