Skip to content

Easy MQTT Handler is a MQTT Client implemented in Python3 that will connect to a MQTT Broker, listening for freely configurable messages and reacting by executing arbitrary pre-defined commands. It comes with a Qt5-based GUI.

License

andzeil/easy-mqtt-handler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About Developers and tinkerers please check CONTRIBUTING.md for specific information about developing, building, translating and contributing.


Easy MQTT Handler
Easy MQTT Handler

Easy MQTT Handler is a MQTT Client implemented in Python3 that will connect to a MQTT Broker,
listening for freely configurable messages and reacting by executing arbitrary pre-defined commands.
It comes with a Qt5-based GUI (License: GPLv3+).

Table of contents

Purpose of this tool

Easy MQTT Handler was mainly developed to provide an easy way to integrate Personal Computers into Home Automation. The tool offers a simple, but functional, GUI to connect to an MQTT Broker and listen to a topic.

The user is able to define commands and parameters that should be part of the payload of the MQTT messages received from the broker. For each command/parameter combination the user can then define an executable that should be launched once a certain command/parameter combination is received.

The tool is neatly integrating into the users' environment by sitting in the tray area as a tray icon.

Using this tool

The first time you start Easy MQTT Handler you will see the main application window. It's featuring a tabbed interface with 3 tabs, a toolbar and a statusbar.

Connection tab

Main Window

In the Connection Tab the user can provide the Hostname, Port, Username, Password and Topic to connect to the MQTT Broker. Furthermore, you can configure Easy MQTT Handler to make use of SSL/TLS, by ticking the checkbox Use SSL/TLS. Although, SSL/TLS makes the setup a little bit more complicated it might still be worth it for you. You can configure the tool just use SSL/TLS for encryption in transit, or even for client certificate authentication. If you want to set this up please take a look at the SSL/TLS Configuration documentation. It will walk you through using certificates provided by a Certificate Authority (CA) and self-signed certificates by using openSSL to create all the necessary certificates and your own CA.

Payload Handlers tab

Payload Handlers

This tab is where the magic happens! To start click the Add Payload Button, which will create a new empty line in the table above the buttons. Now all you need to do is click on the cells of the tables to define the Payload Command and Payload Argument to listen for. Next, set up whatever executable should be launched in the Command to Run column. Should you need to add some command line parameters to the executable you can do so via the Command line arguments column. Look into the chapter Integrating with Home Assistant for some example.

Logs tab

Logs

The last tab of the tool is the Logs tab: It should help the user to pinpoint any sort of potential problem that may arise with the connection to the broker and the tool's configuration.

The Toolbar

These buttons are always visible:

About Shows the licenses
Quit Closes the tool

These buttons are only visible if there's a connection established to a broker:

Disconnect Disconnects from the broker
Reconnect Reconnects to the broker

This Button is only visible when there's no connection to a broker:

Connect Connects to the broker

This button is only visible when the user did changes to the configuration:

Reconnect Save the last changed settings

Easy MQTT Handler will bug you automatically when you want to close the application without saving your changes.
Just to make sure you never lose anything you've reconfigured.

Configuration files

Linux / MacOS

You should be able to locate the standard configuration files in your home directory. Here's the path you should be able to copy & paste: ~/.config/easy-mqtt-handler/
Inside you will find two files, usually: default-settings.json and default-payloads.json.

default-settings.json contains the connection configuration parameters.
default-payloads.json contains all the payloads you defined.

It's possible to use other configuration files, in fact you can have as many as you want to. The trick is to use Command line arguments to launch Easy MQTT Handler. You can also launch as many instances in parallel as you want, by starting them with different command line arguments.

Windows

On Windows the configuration files are exactly the same. However, you will find them in %appdata%\\easy-mqtt-handler\.
Press [Win]-key + [R] and type in %appdata%\\easy-mqtt-handler\, then click [Ok] and you should see the configuration files.

Command line arguments

usage: __main__.py [-h] [-mqtt-conf MQTT_CONFIGURATION_FILE]
                   [-payload-conf PAYLOAD_CONFIGURATION_FILE]

Easy MQTT Handler

options:
  -h, --help            show this help message and exit
  -mqtt-conf MQTT_CONFIGURATION_FILE, --mqtt-configuration-file MQTT_CONFIGURATION_FILE
  -payload-conf PAYLOAD_CONFIGURATION_FILE, --payload-configuration-file PAYLOAD_CONFIGURATION_FILE

Integrating with Home Assistant

To integrate Easy MQTT Handler with Home Assistant first install the mosquitto addon.
Login to your Home Assistant web interface, then click on Settings and select Add-Ons:

Settings > Addons

Afterwards, click the Add-On Store button:

Add-on Store

In the Add-on Store click on the search box and type mosquitto. Then click the Install Button. Once installed you can open the Configuration tab to configure mosquitto.
You should then create a new user for Easy MQTT Handler to access mosquitto. To do so, click on Settings and next select People:

People menu

Hit the Add Person button:

People menu

In the next dialog you only need to set Display name, Username and Password+Confirm Password. You will need the username and password for Easy MQTT Handler to connect to the mosquitto broker.

Add User

To use the Mosquitto as a broker in Home Assistant you need to go to the integration page and install the configuration with one click: Goto Settings -> Devices & Services -> Integrations. MQTT should now appear as a discovered integration at the top of the page. Select it and check the box to enable MQTT discovery if desired, then hit the submit button.

In theory this is all you need to connect Easy MQTT Handler with Home Assistant.

There's now two things you could do:

  1. (optional) Enhance the security of your mosquitto broker by proceeding to SSL/TLS Configuration
  2. Add an MQTT call to an automation to test the integration

Creating your first automation wit Easy MQTT Handler

To create your first automation configure Easy MQTT Handler, first. As described in Connection Tab set up the connection to the mosquitto broker. Port 1883 should be used for MQTT, 8883 in case you've set up SSL/TLS. There's no support for MQTT over Websocket at the moment. This example uses the topic easy_mqtt_handler_pc1. As you can choose your topic freely, ymmv!

Next, move on to the Payload Handlers Tab. If you are on Linux here's a Payload Handler you could set up for testing (uses the tool notify-send, on Ubuntu it's inside the package libnotify-bin):

Add Payload Handler

Now, head over to your Home Assistant's web interface and go to the Settings > Automations & Scenes page:

Automations & Scenes

Here click the Create Automation button:

Create Automation

In the next dialog select Create new automation:

Create Automation

Finally, create an automation like this, for testing:

Custom Automation

We don't really care for the Triggers and Conditions right now, all we want to do is select MQTT: Publish as the Action. You can find it by clicking on Add Action and selecting Call Service.
Now choose a topic. For the purpose of this tutorial we are using easy_mqtt_handler_pc1 (remember: we configured this in Easy MQTT Handler earlier, already!)
The last step is to check the Payload checkbox and insert the following payload for our test: {"command":"notify","args":"test"}.

That's it! You can now click on the "3 dots" menu right to MQTT: Publish and send the payload to the mosquitto broker by clicking on Run.

If everything goes as expected you should now see the following Balloon notification on your desktop:

Custom Automation

If for some reason it didn't work, make sure to check the Logs tab. If the logs show that the payload was received and successfully parsed but nothing happens: just try something other than notify-send. Sky's the limit here. Make this tool yours!

Roadmap

There's no concrete roadmap in place at the moment, but that doesn't mean there's nothing to do. If you want to chime in and contribute, or you just want to see all the known issues, head over to TODOS.md.

Support

For the moment the only support channel available is directly here on GitHub, just open a GitHub issue! I will try to follow-up on whatever it is in a timely manner. Please take not that this is only a free-time project. Of course this means there is no guarantee for any kind of support.

Hope this tool helps someone with their automation projects. Backlinks to this repo would be great, if you are using this tool in any useful way!

-- A. Zeil

About

Easy MQTT Handler is a MQTT Client implemented in Python3 that will connect to a MQTT Broker, listening for freely configurable messages and reacting by executing arbitrary pre-defined commands. It comes with a Qt5-based GUI.

Topics

Resources

License

Stars

Watchers

Forks