Qtopia application

Novas
Hello,
where I can get source code for qtopia application in Friendly ARM tab?
e.g. A/D convert, I2C - EEPROM ?

Andreas Watterott
The FriendlyARM Qtopia apps are not open-source.

Regards,
Andreas

Tan
how to maximize the window size of the usb camera application in qtopia
2.2.0 so that the whole image appears on 15 inch monitor.

whitebank
Hi Tan (I think you are from VN).

Your question is already on this forum, anyway, you should try this in
main.cpp

int main( int argc, char **argv )
{
    QApplication a( argc, argv );

    vending_machine w;
    a.setMainWidget( &w );
    w.showFullScreen();
    return a.exec();

}

i hope those code will help you.