Tag "mqtt"

XBee to MQTT gateway

So far I've posted about hardware and theoretical stuff like network architecture or naming conventions. I think it's time to move to the software side. The core of the sensor network I'm deploying at home is the Mosquitto broker that implements MQTT protocol. It manages the messaging queue, listening to messages posted by publishers and notifying the subscribers. I've been working in parallel to have at least some pieces in place to get and store information from the pulse counter sensor....

MQTT topic naming convention

Naming stuff is one of the core decisions one has to take while designing an architecture. It might not look as important as utilising the right pattern in the right place or defining your database model but my experience says that a good naming convention helps identifying design flaws. In a previous post I introduced the network I'm building for my home monitoring system. As I said it will be based on MQTT, a lightweight messaging protocol....

Home monitoring system

All of us tinkermen eventually end up working on a home monitoring/automation system sooner or later. And that's for me the big background project at the moment. I have already some of the pieces in several stages of readiness but I was lacking an overall view of the system as a whole. My initial approach was to store everything in a MySQL database and develop a web application to graph the time series values....