I use this tutorial : http://doc-snapshot.qt-project.org/qt5-stable/qtserialport/blockingmaster.html
But when I want to run it Qt Creator generates the following error:
error: Unknown module(s) in QT: serialport
When I hold mouse on #include <QtSerialPort/QSerialPort>
it says:
include no such file or directory
I use Qt 5.0.1
any idea?
Try including #include <QtSerialPort/QSerialPort>
instead of
#include <QSerialPort>
, that worked for me