Recommended Topics for Embedded Graduation Projects

Recommended Topics for Embedded Graduation Projects

Follow the Embedded Learning Station for fresh updates every day. 🤟 Tips: This article has a total of 1828 words and an estimated reading time of 11 minutes~ Get the complete set of materials for the development board for free Follow this public account “Embedded Learning Station” Reply with “MP157” to get the complete materials … Read more

How C++ Transforms Code into Games

How C++ Transforms Code into Games

Click the above “Beginner Learning Visuals”, choose to add “star” or “top” Heavyweight content delivered first time How does C++ transform code into games? Well. It’s simple. Since you asked about C++, let me ask you, now, I have a<span>Student</span> class. How does C++ create an object of the student class? // Well, I can! … Read more

Creating a JLINK Programming Tool with QT

Creating a JLINK Programming Tool with QT

Overview The author has always had an idea to create a powerful desktop tool that integrates various tools needed for development, such as: serial port assistant, network assistant, download tools, etc. However, this raises several questions: Question 1: How to present it on the desktop is also a very important issue — desktop floating window. … Read more

Understanding MQTT Protocol in IoT: New Testing Opportunities

Understanding MQTT Protocol in IoT: New Testing Opportunities

In the era of the Internet of Everything, IoT technology is changing our lives and work methods at an unprecedented speed. From smart homes to industrial automation, from smart transportation to remote healthcare, the presence of IoT is everywhere. Behind this, the MQTT protocol plays a key role as an important cornerstone of IoT communication. … Read more

Qt C++ Architect Series – Project Practice Episode 127: QTableView + Model + Delegate Technology – Disk Heartbeat Monitoring Analyzer

Qt C++ Architect Series - Project Practice Episode 127: QTableView + Model + Delegate Technology - Disk Heartbeat Monitoring Analyzer

Congratulations on visiting the 【JueDingGe Programming】 WeChat public account 【Knowledge Repository】, specially customized for everyoneQt C++ Architect Series – Project Practice Episode 126:This issue focuses on a practical and challenging technical topic – 【QTableView + QAbstractTableModel + Custom Delegate Project Technology: Disk Heartbeat Monitoring Performance Analyzer】.Whether you are a beginner who has just mastered the … Read more

Building an IoT Platform from Scratch: Practical Experience Compiled into a ‘Development Manual’

Building an IoT Platform from Scratch: Practical Experience Compiled into a 'Development Manual'

In the summer of 2025, when the “Internet of Everything” is no longer just a concept but has permeated every corner of industry, home, and healthcare, a real question faces countless developers: how to efficiently build a stable and scalable IoT platform? Is the choice of protocols too complex? Are practical case studies hard to … Read more

Introduction to MQTT Subscription

Introduction to MQTT Subscription

Table of Contents Series Article Directory Introduction 1 Subscription Options 1.1 Overview of Subscription Options 1.2 QoS 1.2.1 Overview of QoS Subscription Options 1.2.2 QoS Subscription Options Demonstration 1.3 No Local 1.3.1 Overview of No Local Subscription Options 1.3.2 No Local Subscription Options Demonstration Allow Forwarding Disallow Forwarding 1.4 Retain As Published 1.4.1 Overview of … Read more

Implementing a General Layout Scheme of Top/Left/Main in QT C++

Implementing a General Layout Scheme of Top/Left/Main in QT C++

I came across an article discussing this layout implementation, but the code was missing many components and could not run. It seems to be an AI-generated article, primarily emphasizing hands-on skills. Therefore, I borrowed the coding ideas and some code from that article to create a small demo that is functional and has all the … Read more

Understanding MQTT Topics

Understanding MQTT Topics

Table of Contents Series Article Directory Introduction 1. Topic Wildcards 1.1 Single-Level Wildcards 1.2 Multi-Level Wildcards 2. System Topics 3. Testing System Topics with MQTTX 3.1 Enable Access Permissions 3.2 EMQX Cluster Node List 3.3 Subscribe to EMQX Version Topic 3.4 Subscribe to Online/Offline Topics Conclusion Introduction The MQTT topic is essentially a UTF-8 encoded … Read more

Implementing a Frameless Window with Custom Title Bar, Rounded Corners, Resizing, and Shadows in Qt C++

Implementing a Frameless Window with Custom Title Bar, Rounded Corners, Resizing, and Shadows in Qt C++

When developing interfaces using Qt, frameless window designs are often adopted to enhance visual effects. Implementing a frameless window is actually quite simple, accomplished with a single line of code. setWindowFlag(Qt::FramelessWindowHint); Since the default system title bar is removed, the window loses its native moving and resizing capabilities, which need to be implemented manually through … Read more