Iot mqtt panel windows

Developed By: Rahul Kundu

License: Free

Rating: 4,6/5 — 2.404 votes

Last Updated: April 22, 2025

App Details

Version 2.16.72
Size 31.6 MB
Release Date March 24, 25
Category Tools Apps

App Permissions:
Required to be able to access the camera device. [see more (5)]

What’s New:
New features for Button Panel- Separate payload publish on button press an release- Button panel repeated payload publish until button released [see more]

Description from Developer:
This application allow you to mange and visualize IoT project, based on MQTT protocol.

With this app you can make DIY Smart Home project in a minute. The configurations are very s… [read more]

About this app

On this page you can download IoT MQTT Panel and install on Windows PC. IoT MQTT Panel is free Tools app, developed by Rahul Kundu. Latest version of IoT MQTT Panel is 2.16.72, was released on 2025-03-24 (updated on 2025-04-22). Estimated number of the downloads is more than 100,000. Overall rating of IoT MQTT Panel is 4,6. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 2,404 users, 1,710 users had rated it 5*, 99 users had rated it 1*.

How to install IoT MQTT Panel on Windows?

Instruction on how to install IoT MQTT Panel on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install IoT MQTT Panel on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, …

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it — you see you’re playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn’t work on your PC, or you cannot install, comment here and we will help you!

  1. Install using BlueStacks
  2. Install using NoxPlayer

Step By Step Guide To Install IoT MQTT Panel using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn’t automatically open BlueStacks, right-click on it and select Open with… Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click «IoT MQTT Panel» icon on the home screen to start using, it’ll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install IoT MQTT Panel on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find «IoT MQTT Panel» on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

The purpose of this article is to provide FAQ answers of “IoT MQTT Panel” application. This is the place where you can leave your feedback and suggestion for this app.

Google Play Store links for Android:

Pro version: IoT MQTT Panel Pro

Free version: IoT MQTT Panel

App Store links for iOS:

Pro version: IoT MQTT Panel Pro

Free version: IoT MQTT Panel

Which protocols are supported?

This app supports MQTT (TCP) and Websocket protocol.

Does it support TLS/SSL?

Yes, it supports SSL. In iOS you can only use certificates provided by trusted CA. While in Android you use a trusted CA certificate or self-signed x509 certificate for encryption. Using Linux OpenSSL the certificate can be generated using the following command.

openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes -keyout snr-key.key -out snr-crt.crt -subj “/CN=example.com” -addext “subjectAltName=DNS:example.com,IP:10.0.2.2,IP:192.168.0.150”

Does it support client certificate for authentication?

Yes, it supports client-side authentication using PKCS12 certificate. If you have the Client Certificate and Private Key separately, generate this certificate using OpenSSL. The export password must not be empty and use OpenSSL version 1.1 or -legacy flag. Otherwise, the certificate may not be imported properly. Use the following command in the terminal to generate it.

openssl pkcs12 -legacy -export -clcerts -in client.crt -inkey client.key -out client.p12

Which QoS supported?

Only Qos 0, 1 and 2 are supported.

What is the datatype of the payload?

To keep the app simple all payloads are implemented as string type.

Is it possible to publish and subscribe with different topic?

This application has multiple panels which can publish a message as well as subscribe message. For these panels, you have options to configure publish and subscribe topic separately.

Does it support JSON Data?

Yes, it supports JSON Data.

Subscribe JSON Data: You can parse received messages using simple JsonPath. The supported JsonPath are listed below.

$ The root object/element
@ The current object/element
. Child member operator
.. Recursive descendant operator
* Wildcard matching all objects/elements regardless their names
[ ] Subscript operator
[ , ] Union operator for alternate names or array indices as a set
?( ) Applies a filter (script) expression via static evaluation
( ) Script expression via static evaluation

Note: Only a single quote is supported inside JsonPath expression. Script expressions inside of JSONPath locations are not recursively evaluated by JsonPath. Only the global $ and local @ symbols are expanded by a simple regular expression. This application does not validate JsonPath you provided. In case JsonPath is invalid or it does not match with any data it simply gets ignored. For debugging please use the Text Input and Text Log Panel.

Publish JSON Data: You can wrap publish data into a JSON format. For example, you have configured {“kitchen”: {“fan”: “<slider-payload>”}} as JSON pattern. Now if you set slider value to 10, then <slider-payload> will be replaced by 10 and finally {“kitchen”: {“fan”: “10”}} will be published. You can use multiple replaceable variable like <timestamp>, <client-id> etc. depending on the context. To know all available variables, press the inline help button while configuring the panel.

How all devices are organized?

When we make a Smart Home, ideally we deal with multiple IoT nodes e.g. Arduino, Raspberry Pi, ESP Device etc. Each node connects multiple sensors and transducers which have their own topic and messages. IoT MQTT Panel application is not only designed to visualize the various IoT states but also organize these connections, nodes, messages etc. Before we start we need to familiar about the building blocks of this application. The below figure represents basic architecture of a typical Smart Home application.

IoT MQTT Panel User Guide

Connections: This application can manage multiple connections. Each of them can be connected to a MQTT broker. For an instance, you have a local broker hosted in Raspberry Pi and another one in a public internet. When you are outside, the public broker is used and inside home you use local broker for faster response. To manage these two connections efficiently you should create two different connections.
Dashboard: Each connection can have one or more dashboards. It groups all of your sensor and transducers (referred as panel in this app) visually. For an example, you have a Raspberry Pi in your drawing room and a ESP 8266 in kitchen. You should create two separate dashboard under a connection.
Panel: In most cases, you connect multiple sensor and transducers to an IoT node. Suppose you have a temperature sensor connected to Raspberry Pi in drawing room. Additionally, the Raspberry Pi is connected to light switch and fan speed controller. So, you should create a Vertical Meter (for monitoring temperature), a Switch (to turn on or off light) and a Slider (to control fan speed manually) panel under the Raspberry Pi dashboard.

What is dashboard prefix?

When you configure dashboard prefix it will be automatically prepended to all panel’s topic under the same dashboard. This is helpful for public broker. Please refer the User Guide for detailed explanation.

Can we combine multiple panels?

Yes, you can visually combine same or different type panels. To combine panels use merge feature in panel option. This will remove panel border of a particular side and it will appear as a combo panel.

Is it possible to display Sent and Received message timestamp?

Yes, you can turn on this feature for any panel. Remember this only shows timestamp in broker’s perspective, i.e. it shows when the message is delivered to the broker or message delivered to mobile phone.

What is the maximum limit of message storage?

For most of the panel, only the last message is relevant. However, some panels like Log and Line Graph can store previous messages. Each panel can store 1000 messages per topic.

I hope this FAQs are useful to you. For detailed user guide please refer info page inside the application. If you have any other question please feel free to leave a comment.

IoT Remote for Smart Home based on MQTT Protocol.

IoT MQTT Panel is developed and provided by Rahul Kundu. LDPlayer offers the download service only.

Rahul Kundu

Tools

How to use IoT MQTT Panel on PC


Last Updated:

2025-04-19

snr.lab.iotmqttpanel.prod

Download IoT MQTT Panel on PC

Use LDPlayer to Play IoT MQTT Panel on PC

IoT MQTT Panel is a Tools application developed by Rahul Kundu, but with the best Android emulator-LDPlayer, you can download and play IoT MQTT Panel on your computer.

Running IoT MQTT Panel on your computer allows you to browse clearly on a large screen, and controlling the application with a mouse and keyboard is much faster than using touchscreen, all while never having to worry about device battery issues.

With multi-instance and synchronization features, you can even run multiple applications and accounts on your PC.

And file sharing makes sharing images, videos, and files incredibly easy.

Download IoT MQTT Panel and run it on your PC. Enjoy the large screen and high-definition quality on your PC!

This application allow you to mange and visualize IoT project, based on MQTT protocol.

With this app you can make DIY Smart Home project in a minute. The configurations are very simple. Well documented FAQ and User Guide are available at application info page.

Features:

1. Designed to run 24×7 in background
2. Supports both MQTT (TCP) and Websocket protocol.
3. SSL for secure communication.
4. JSON Support for both subscribe and publish message.
5. Panels subscribe and / or publish the topic automatically, hence get updated in real time.
6. Designed to work with public broker efficiently (using device prefix).
7. Sent and Received timestamp from broker.
8. Material design.
9. Flexible panel width, merge any panels
10. More than 250 icons to customize specific panels.
11. Dark theme for comfortable use in low light.
12. Clone connection, device or panel for effortless configuration
13. Import/Export application configuration for easy share with multiple devices.
14. Runs in background and re-connects automatically.
15. Notification on receiving message. (Available on pro version only)
16. Persist export message for log and graph. (Available on pro version only)

Available panels:
-Button
-Slider
-Switch
-LED Indicator
-Combo Box
-Radio Buttons
-Multi-State Indicator
-Progress
-Gauge
-Color Picker
-Time Picker
-Text Input
-Text Log
-Image
-Barcode scanner
-Line graph
-Bar graph
-Chart
-URI Launcher
This list will grow upon feedback from users.

Your feedback is much appreciated. If you find any issue please feel free to leave a comment in my blog with steps to reproduce.

https://blog.snrlab.in/iot/iot-mqtt-panel-user-guide/

Please purchase the add free pro version to show appreciation.

Screenshots and Videos of IoT MQTT Panel PC

With LDPlayer, you can download and run IoT MQTT Panel on PC, simultaneously managing multiple apps and multiple accounts. Become a master of time management, balancing work and entertainment effortlessly.

LDPlayer is a lightweight and free Android emulator that supports various Windows systems and most popular applications and games. It has established partnerships with over 1,000 gaming companies globally, earning their trust, and has exceeded 270 million downloads. Moreover, LDPlayer is based on Android 9.0, providing optimized performance for both Intel and AMD devices, ensuring a better experience in IoT MQTT Panel.

Multi-Instance

Transform your computer into several LDPlayers, allowing you to run multiple applications or accounts on your PC. Coupled with a synchronizer, it assists you in managing multiple IoT MQTT Panel accounts!

File Transfer

Effortlessly transfer files between Android emulators and your computer, making sharing images, videos, and documents in IoT MQTT Panel incredibly easy.

Extended Battery Life

When running IoT MQTT Panel on your computer, you need not worry about low battery or device overheating issues. Enjoy playing for as long as you desire.

Virtual GPS

By using LDPlayer to run IoT MQTT Panel, you can alter your location, unlocking app content specific to certain regions, hiding your real geographical information to prevent privacy breaches.

Large Screen

Offering a high-definition experience for IoT MQTT Panel on a large screen, animations and images are smoother, allowing for more comfortable content browsing and video watching.

Ample Memory

With larger memory than smartphones, you no longer need to worry about insufficient memory hindering IoT MQTT Panel operations. Download as many applications as you desire effortlessly.

Download and install LDPlayer on your computer

Locate the Play Store in LDPlayer’s system apps, launch it, and sign in to your Google account

Enter «IoT MQTT Panel» into the search bar and search for it

Choose and install IoT MQTT Panel from the search results

Once the download and installation are complete, return to the LDPlayer home screen

Click on the game icon on the LDPlayer home screen to start enjoying the exciting game

If you’ve already downloaded the APK file from another source, simply open LDPlayer and drag the APK file directly into the emulator.

If you’ve downloaded an XAPK file from another source, please refer to the tutorial for installation instructions.

If you’ve obtained both an APK file and OBB data from another source, please refer to the tutorial for installation instructions.

How to download IoT MQTT Panel on PC

Here’s how to download and install IoT MQTT Panel on your PC

Find an Android Emulator

Let’s begin by having your Windows PC fully booted and prepared. Start your browser and download Android Emulator. You can try the Android emulators like BlueStacks, Nox App Player etc.

Download Emulator

After you’ve found the right official installer, you can download and get the installation. Based on the speed of your connection to the internet, the download could take several minutes.

Run Installer

After the download has been completed, open the installer. Choose the directory where you want to install the Android emulator.

Start Emulator

Once done with the installation, find the shortcut icon on your main desktop—double-click on it to launch the emulator.

Log into the Play Store

You’ll need to sign into your Google account as this is your first time launching the Play Store App. You may also sign up for an account in case you dont have one.

Install IoT MQTT Panel by searching for it

After you log into your account, you’ll be presented with the Play Store’s selection of apps that are available for download.

Download IoT MQTT Panel app by searching.

All ready!

You are here. Now you can access IoT MQTT Panel from your PC.

Download IoT MQTT Panel PC for free at AppsPlayground. Rahul Kundu published IoT MQTT Panel for Android operating system mobile devices, but it is possible to download and install IoT MQTT Panel for PC or Computer with operating systems such as Windows 7, 8, 8.1, 10 and Mac.

Let’s find out the prerequisites to install IoT MQTT Panel on Windows PC or MAC computer without much delay.

Select an Android emulator:  There are many free and paid Android emulators available for PC and MAC, few of the popular ones are Bluestacks, Andy OS, Nox, MeMu and there are more you can find from Google.

Compatibility:  Before downloading them take a look at the minimum system requirements to install the emulator on your PC.

For example,  BlueStacks requires OS: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP2, Windows XP SP3 (32-bit only), Mac OS Sierra(10.12), High Sierra (10.13) and Mojave(10.14), 2-4GB of RAM, 4GB of disk space for storing Android apps/games, updated graphics drivers.

Finally, download and install the emulator which will work well with your PC’s hardware/software.

How to Download and Install IoT MQTT Panel for PC or MAC:

  • Open the emulator software from the start menu or desktop shortcut in your PC.
  • Associate or set up your Google account with the emulator.
  • You can either install the app from Google PlayStore inside the emulator or download IoT MQTT Panel APK file and open the APK file with the emulator or drag the file into the emulator window to install IoT MQTT Panel for PC.

You can follow above instructions to install IoT MQTT Panel for PC with any of the Android emulators available.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Safari for windows official
  • Prevhost exe windows 7
  • Команда для вызова панели управления windows 10
  • Значок языка на панели задач пропал windows 10 как вернуть
  • Не подключается psp к компьютеру через usb windows 10