Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • Provide offline installer for Raspberry Pi 3

    Unsolved
    3
    0 Votes
    3 Posts
    991 Views
    A
    @jsulm ok I will raise my query on Raspbian forum.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Raspberry Pi3 and QTbluetooth rfcomm server

    Unsolved
    11
    0 Votes
    11 Posts
    4k Views
    A
    Hi, I tried to lower the bluez version but unsuccessful in gettin qt bluetooth work for me bluetoothd -v 4.101 According to blog it should have worked. Can you please give a official link from where I can get what is the compatible version of bluez with my qt version
  • QT bluetooth not working on Raspberry Pi

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    A
    @jsulm I tried using link QBluetoothLocalDevice aa; aa.powerOn(); QList<QBluetoothHostInfo> b; b=aa.allDevices(); b had zero count. i.e QT was unable to detect any device.
  • Android TV remote support

    Unsolved
    2
    0 Votes
    2 Posts
    793 Views
    raven-worxR
    @gpreddy-0 AFAIK those are simple key events in the system. So simply log all key events while playing around with the remote in your application.
  • QWayland client has performance issues in raspberry Pi3

    Locked Unsolved
    2
    0 Votes
    2 Posts
    490 Views
    SGaistS
    Hi, Please, don't post the same question in multiple sub-forums, one is enough. Duplicate Closing this one.
  • Retrieving the phone number on Android

    Solved
    3
    0 Votes
    3 Posts
    990 Views
    _
    thx a lot for your help
  • Fix landscape orientation for both IOS/ANDROID

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    YashpalY
    Thank you @J-Hilk and @raven-worx for your support.
  • A proper way to detect if device is either a cellphone or a tablet?

    Unsolved
    9
    0 Votes
    9 Posts
    5k Views
    jsulmJ
    @xtingray said in A proper way to detect if device is either a cellphone or a tablet?: PS: Just out of curiosity, can I mix QML and QWidget code in the same mobile app? Yes, see http://doc.qt.io/qt-5/qquickwidget.html
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    446 Views
  • Can Qtwebengine be cross compiled for Raspberry Pi?

    Unsolved
    2
    0 Votes
    2 Posts
    725 Views
    Z
    Yes it is possible. You can try with my fork https://github.com/zevero/rpi-buildqt (just remove -r from qmake ... its not needed) However resulting qtwebengine does not allow for mouse interactions ... tested with 5.8 and 5.9. I got 5.6 up and running with arch (rasp and system) last year, but I have not succeeded with 5.8 or 5.9.
  • How to build Qt for Raspberry Pi3

    Solved
    23
    0 Votes
    23 Posts
    15k Views
    Z
    Work around for arm_thumb error is to be found here https://github.com/Kukkimonsuta/rpi-buildqt/pull/7 Following https://github.com/Kukkimonsuta/rpi-buildqt/issues/8 I succeeded even in compiling 5.9 (arm_thumb work around was not necessary any more) Both qtwebengine 5.8 and 5.9 work nicely and fast BUT mouse interaction does not work (only keyboard). Anybody had this experience? Very frustrating after all the trouble...
  • Qt User Plugins & iOS

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    dheerendraD
    Thank @SGaist . Here is the complete info if somebody requires. Plugin Side - First build your Qt plugin as static lib. For this place the following configuration in your plugin pro file. CONFIG +=plugin static My Plugin name is libDataStore.a & class name of the plugin is DataStore & Interface name is IDataStore Inside the constructor of DataStore, set the object name e.g this.setObjectName("DataCollectorPlugin") libDataStore.a is present in the directory called /Users/dheeru/Qt/bins App Side - Place the configuration in application pro file like this LIBS += -L/Users/dheeru/Qt/bins -lDataStore Q_IMPORT_PLUGIN(DataStore) in main.cpp. Argument for the macro should match the classname Use QPluginLoader::staticInstances function. This will return the QObjects list. Since there may be many plugins, objectName is useful here. After this type cast the required object to Appropriate interface. QObjectList objList = QPluginLoader::staticInstances(); foreach(QObject *obj1, objList){ qDebug() <<" IOS Load successful =" << obj1->objectName() << endl; IDataStore *collector = qobject_cast<IDataStore*>(obj1); if(collector!=NULL){ connect(this,SIGNAL(storeDB()),obj1,SLOT(start())); } } Once you have object with you, rest of the process is same.
  • Qt android paintevent problem?

    Unsolved
    3
    0 Votes
    3 Posts
    902 Views
    raven-worxR
    @kkkkxxxx as @mvuori said, don't draw on the main window directly. There is a placed widget over your paintings so you wont see them. What are you exactly trying to achieve?
  • Why am I getting a public IP on mobile and local IP on desktop?

    Unsolved
    2
    0 Votes
    2 Posts
    699 Views
    6thC6
    I expect hostInfoResults is returning a public interface. Probably just luck PC works, maybe it lists local interfaces first? These might help: http://doc.qt.io/qt-5/qhostaddress.html#SpecialAddress-enum http://doc.qt.io/qt-5/qtnetwork-fortuneserver-example.html
  • QtChart & Gestures

    Unsolved qtchart 5.8 ios zoom
    1
    0 Votes
    1 Posts
    788 Views
    No one has replied
  • Problem with Cross compiling

    Unsolved
    10
    0 Votes
    10 Posts
    4k Views
    H
    Hi thanks to all. Sry for my late reply, I wasn't at home the last week. https://forum.qt.io/topic/68381/cross-compile-qt-windows-to-raspberry-3 I use this instruction to build my toolchain. But I have this problem and didn't get it worked corecctly. I tried to rename but it doesn't work. Have someone an instruction how I can change, the mkspec. To the last reply my settings are the same as yours only that by xspec I have /device/rpi3-g++. I have absolutly no idea why I get this warning. I can compile my Applications without Problems. But if I add something to CONFIG=+ it doesn't work. Best regards, Husky
  • EGLFS QML+QWidgets

    Unsolved
    1
    0 Votes
    1 Posts
    354 Views
    No one has replied
  • Using Android monitor with qt and creator

    Unsolved android android monitor
    3
    0 Votes
    3 Posts
    871 Views
    K
    @SGaist Thanks for response will contact the mailing list
  • How to create a menu using GraphicsScene with buttons

    Unsolved qgraphicsitem qgraphicsscene menu
    1
    0 Votes
    1 Posts
    793 Views
    No one has replied