View Single Post
shep's Avatar
Posts: 85 | Thanked: 65 times | Joined on Jan 2010 @ Ireland
#1
Hi All,

I'm trying to parse the accelerometer data using QT.

My code looks like this:
Code:
void MainWindow::update_accel()
{

    // read the file /sys/class/i2c-adapter/i2c-3/3-001d/coord

    QFile file("/sys/class/i2c-adapter/i2c-3/3-001d/coord");
    if (!file.open (QIODevice::ReadOnly))
    {
        return;
    }
    else
    {
        QTextStream stream ( &file );
        QString line;
        while( !stream.atEnd() )
        {
            line = stream.readLine();

            ui->label->setText(line);
        }
    }
}
The app just hangs when I call this function and I can't figure out why. I have tried on Windows to use another filename and it works fine...but the app hangs on the N900.

Any clues?

Thanks!

Shep
__________________
- Hey! I also do other stuff Touchscreen apps for Windows and Android
- Currently developing a Diet Assistant/Weight Tracker for the N900