Thread
:
QT - Madde - Accelerometer...help please
View Single Post
kunal_the_one
2010-03-01 , 05:18
Posts: 13 | Thanked: 18 times | Joined on Jun 2009 @ India
#
3
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();
}
Quote & Reply
|
The Following 7 Users Say Thank You to kunal_the_one For This Useful Post:
BLIZZARD
,
danielwilms
,
krk969
,
Sasler
,
shep
,
Venemo
,
vkv.raju
kunal_the_one
View Public Profile
Send a private message to kunal_the_one
Find all posts by kunal_the_one