![]() |
QT - Madde - Accelerometer...help please
Hi All,
I'm trying to parse the accelerometer data using QT. My code looks like this: Code:
void MainWindow::update_accel() Any clues? Thanks! Shep |
Re: QT - Madde - Accelerometer...help please
http://doc.trolltech.com/4.6/qfile.html
On Unix, there are some special system files (e.g. in /proc) for which size() will always return 0, yet you may still be able to read more data from such a file; the data is generated in direct response to you calling read(). In this case, however, you cannot use atEnd() to determine if there is more data to read (since atEnd() will return true for a file that claims to have size 0). Instead, you should either call readAll(), or call read() or readLine() repeatedly until no more data can be read. |
Re: QT - Madde - Accelerometer...help please
Try following code, it works for me.
static const QString PROC_ENTRY = "/sys/class/i2c-adapter/i2c-3/3-001d/coord"; QFile f(PROC_ENTRY); if (!f.exists() or !f.open(QIODevice::ReadOnly | QIODevice::Text)) { qDebug() << "could not read motion data"; } else { QByteArray line = f.readLine(); QRegExp rx("([0-9-]+) ([0-9-]+) ([0-9-]+)"); rx.indexIn(line); qreal x = rx.cap(1).toInt(); qreal y = rx.cap(2).toInt(); qreal z = rx.cap(3).toInt(); mCurrentPos.setX(x); mCurrentPos.setY(y); f.close(); } |
Re: QT - Madde - Accelerometer...help please
Quote:
One more question...using a sample rate of 30 times per second I see some "jitter" on all 3-axes ... +/-18? Is that right? Caused by gravity? Unusual solar flare activity? :D Shep |
Re: QT - Madde - Accelerometer...help please
|
Re: QT - Madde - Accelerometer...help please
Quote:
|
All times are GMT. The time now is 15:09. |
vBulletin® Version 3.8.8