Hello.
I’m trying to use QList to send data via serial port.
QList<QString> command;
command << "ant.hold.az -60\n"
<< "ant.holding\n";
How should I convert qstring to send data with QIODevice::write(const char * data)?
Thanks fot help.
↧