Qt QSerialPortInfo

本文为Qt 5.15->Qt Serial Port->C++ Classes->QSerialPortInfo及Qt 5.15->Qt Serial Port->Enumerator Example的内容翻译,文档原文可以在网站查看:https://doc.qt.io/qt-5/qserialportinfo.html

QSerialPortInfo Class

QSerialPortInfo 类提供系统串行端口的信息。

详细说明 Detailed Description

使用QSerialPortInfo的静态方法可以生成一个QSerialPortInfo对象的列表。列表中每个QSerialPortInfo对象代表一个串行端口,可以用于查询端口名称、系统位置、描述、以及制造商等信息。QSerialPortInfo类还可以用作QSerialPort类的setPort()方法的输入参数,参见Qt QSerialPort

端口枚举示例 Enumerator Example

端口枚举示例展示如何使用QSerialPortInfo类获取系统中存在的串行设备的信息。

示例在控件中显示QSerialPortInfo类提供的串行端口的信息,如下图所示:

Qt QSerialPortInfo

使用静态方法availablePorts()获取可用端口的信息,示例代码如下。

/****************************************************************************
**
** Copyright (C) 2012 Denis Shienkov <denis.shienkov@gmail.com>
** Copyright (C) 2012 Laszlo Papp <lpapp@kde.org>
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtSerialPort module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** ...
**
** BSD License Usage
** ...
**
** $QT_END_LICENSE$
**
****************************************************************************/


#include <QApplication>
#include <QLabel>
#include <QScrollArea>
#include <QSerialPortInfo>
#include <QVBoxLayout>
#include <QWidget>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    auto layout = new QVBoxLayout;

    const auto infos = QSerialPortInfo::availablePorts();
    for (const QSerialPortInfo &info : infos) {
        QString s = QObject::tr("Port: ") + info.portName() + "n"
                    + QObject::tr("Location: ") + info.systemLocation() + "n"
                    + QObject::tr("Description: ") + info.description() + "n"
                    + QObject::tr("Manufacturer: ") + info.manufacturer() + "n"
                    + QObject::tr("Serial number: ") + info.serialNumber() + "n"
                    + QObject::tr("Vendor Identifier: ") + (info.hasVendorIdentifier() ? QString::number(info.vendorIdentifier(), 16) : QString()) + "n"
                    + QObject::tr("Product Identifier: ") + (info.hasProductIdentifier() ? QString::number(info.productIdentifier(), 16) : QString()) + "n";

        auto label = new QLabel(s);
        layout->addWidget(label);
    }

    auto workPage = new QWidget;
    workPage->setLayout(layout);

    QScrollArea area;
    area.setWindowTitle(QObject::tr("Info about all available serial ports."));
    area.setWidget(workPage);
    area.show();

    return a.exec();
}


原文始发于微信公众号(技术知识小记):Qt QSerialPortInfo

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/184943.html

(0)
小半的头像小半

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!