read data from serial port | Qt Forum
forum.qt.io › topic › 93338Aug 3, 2018 · Qt Development SOLVED read data from serial port isan 3 Aug 2018, 08:18 I ask this question before and I could not make the problem clear because it's not a good question so I delete the last topic and post new one with new details I want to read data from USB port of raspberry pi and convert it to string for save it to excel file
c++ - QT Serial Port Reading - Stack Overflow
stackoverflow.com › questions › 42576537Mar 3, 2017 · Use waitForReadyRead() to block the thread until new data arrives to the serial port. This makes the calling thread unable to do anything until new data arrives on this serial port. If this thread was a GUI thread, This will make the application unresponsive during that period of time. Use this approach only when you are sure this is what you want.