All Projects → fabaff → Mqtt Panel

fabaff / Mqtt Panel

Licence: mit
A web interface for MQTT

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mqtt Panel

Mqttnet
MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.
Stars: ✭ 2,486 (+689.21%)
Mutual labels:  mqtt, mqtt-client, mqtt-broker, iot
Mqtt Pwn
MQTT-PWN intends to be a one-stop-shop for IoT Broker penetration-testing and security assessment operations.
Stars: ✭ 156 (-50.48%)
Mutual labels:  mqtt, mqtt-client, mqtt-broker, iot
Blinker Library
An IoT Solution,Blinker library for embedded hardware. Works with Arduino, ESP8266, ESP32.
Stars: ✭ 1,095 (+247.62%)
Mutual labels:  mqtt, iot, websockets
Psmqtt
Utility reporting system health and status via MQTT
Stars: ✭ 95 (-69.84%)
Mutual labels:  mqtt, mqtt-client, iot
Paho.mqtt.java
Eclipse Paho Java MQTT client library. Paho is an Eclipse IoT project.
Stars: ✭ 1,620 (+414.29%)
Mutual labels:  mqtt, mqtt-client, iot
Aedes
Barebone MQTT broker that can run on any stream server, the node way
Stars: ✭ 1,007 (+219.68%)
Mutual labels:  mqtt, mqtt-broker, iot
Mqtt
MQTT broker written in D, using vibe.d
Stars: ✭ 59 (-81.27%)
Mutual labels:  mqtt, mqtt-broker, iot
Hbmqtt
MQTT client/broker using Python asynchronous I/O
Stars: ✭ 667 (+111.75%)
Mutual labels:  mqtt, mqtt-client, mqtt-broker
Blynk Server
Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes
Stars: ✭ 8 (-97.46%)
Mutual labels:  mqtt, iot, websockets
Openremote
100% open-source IoT Platform - Integrate your assets, create rules, and visualize your data
Stars: ✭ 254 (-19.37%)
Mutual labels:  mqtt, mqtt-broker, iot
Esp8266 React
A framework for ESP8266 & ESP32 microcontrollers with a React UI
Stars: ✭ 193 (-38.73%)
Mutual labels:  mqtt, iot, websockets
Emqx
An Open-Source, Cloud-Native, Distributed MQTT Message Broker for IoT.
Stars: ✭ 8,951 (+2741.59%)
Mutual labels:  mqtt, mqtt-broker, iot
Mqttx
MQTT X - Elegant MQTT 5.0 Client Tool of Cross-platform
Stars: ✭ 892 (+183.17%)
Mutual labels:  mqtt, mqtt-client, iot
Thingsboard
Open-source IoT Platform - Device management, data collection, processing and visualization.
Stars: ✭ 10,526 (+3241.59%)
Mutual labels:  mqtt, iot, websockets
Thingsboard Gateway
Open-source IoT Gateway - integrates devices connected to legacy and third-party systems with ThingsBoard IoT Platform using Modbus, CAN bus, BACnet, BLE, OPC-UA, MQTT, ODBC and REST protocols
Stars: ✭ 796 (+152.7%)
Mutual labels:  mqtt, mqtt-broker, iot
mqttools
MQTT version 5.0 client and broker using asyncio
Stars: ✭ 44 (-86.03%)
Mutual labels:  mqtt, mqtt-broker, mqtt-client
Hivemq Mqtt Client
HiveMQ MQTT Client is an MQTT 5.0 and MQTT 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and backpressure support
Stars: ✭ 402 (+27.62%)
Mutual labels:  mqtt, mqtt-client, iot
Hivemq Community Edition
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5. It is the foundation of the HiveMQ Enterprise Connectivity and Messaging Platform
Stars: ✭ 562 (+78.41%)
Mutual labels:  mqtt, mqtt-broker, iot
Broadlink Mqtt
MQTT client to control BroadLink devices
Stars: ✭ 169 (-46.35%)
Mutual labels:  mqtt, mqtt-client, iot
Iot Harbor
reactor3实现的mqtt库
Stars: ✭ 234 (-25.71%)
Mutual labels:  mqtt, mqtt-client, mqtt-broker

mqtt-panel

A simple web interface which is able to subscribe to a MQTT topic and display the information.

The screenshot shows an example how to keep track on what's going in your apartment or your house. It's not about controlling, this setup is about observing various states.

screenshot

screenshot

What to see mqtt-panel in action -> http://youtu.be/Qb0UJa9kf2g

The web page is using bootstrap with jQuery.

Prerequisites/Installation

Get the files

Clone the mqtt-panel repository

$ git clone [email protected]:fabaff/mqtt-panel.git

Dependencies

mqtt-panel is using the listed projects to provide its functionality:

If you are using Fedora and want to generate MQTT messages, install the paho-mqtt Python bindings for test-messages.py.

$ sudo dnf -y install python-paho-mqtt

MQTT broker/server

A MQTT broker/server with Websocket support is needed.

  • mosquitto - An Open Source MQTT v3.1/3.11 broker
  • mosca - A multi-transport MQTT broker for node.js (Project seems abandoned)

Running mqtt-panel

  1. Make sure that your MQTT broker/server is running and listening.
  2. Adjust var host = '127.0.0.1'; and var port = 3000; in the file js/index.js to match your setup. Also, var topic = '#';.
  3. Open index.html in a modern web browser.

Generate MQTT messages

Start the ./test-messages.py script to publish test messages if you have no other source for messages. Depending on your broker you may need to set the supported version, on line 33: protocol=mqtt.MQTTv311 and adjust the broker and its port.

For manually sending messages to your MQTT broker/server you can use mosquitto_pub from mosquitto.

$ mosquitto_pub -V mqttv311 -h localhost -d -t home/front/door -m "false"

To check if the messages are are ok, subscribe to the topic home/# with mosquitto_sub.

$ mosquitto_sub -V mqttv311 -h localhost -d -t home/#

Credits

mqtt-panel was inspired by the ideas of:

License

mqtt-panel licensed under MIT, for more details check LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].