Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Regarding Projector Programming using QT
Qt 6.11 is out! See what's new in the release blog

Regarding Projector Programming using QT

Scheduled Pinned Locked Moved Solved General and Desktop
30 Posts 5 Posters 10.0k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • jsulmJ jsulm

    @Prath You should check what write() returns and connect a slot to https://doc.qt.io/qt-5/qserialport.html#errorOccurred to see whether you get any errors.

    P Offline
    P Offline
    Prath
    wrote on last edited by
    #15

    @jsulm Could you please help me with the syntax for checking the error. I am completely new in using this.

    jsulmJ 1 Reply Last reply
    0
    • P Prath

      @jsulm Could you please help me with the syntax for checking the error. I am completely new in using this.

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #16

      @Prath You know how to connect a slot to a signal?
      https://doc.qt.io/qt-5/signalsandslots.html

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      2
      • P Offline
        P Offline
        Prath
        wrote on last edited by Prath
        #17

        Yeah @jsulm . We have to connect this signal [signal]void QSerialPort::errorOccurred(QSerialPort::SerialPortError error) to the slot right?

        Is this correct?
        void MainWindow::errorReport(QSerialPort::SerialPortError error)
        {
        if(error!=0)
        qDebug()<<"ERROR:"<<endl<<error; // nothing printed
        }

        connect(this->Serial,SIGNAL(error(QSerialPort::SerialPortError)),this,SLOT(errorReport(QSerialPort::SerialPortError)));

        jsulmJ 1 Reply Last reply
        0
        • P Prath

          Yeah @jsulm . We have to connect this signal [signal]void QSerialPort::errorOccurred(QSerialPort::SerialPortError error) to the slot right?

          Is this correct?
          void MainWindow::errorReport(QSerialPort::SerialPortError error)
          {
          if(error!=0)
          qDebug()<<"ERROR:"<<endl<<error; // nothing printed
          }

          connect(this->Serial,SIGNAL(error(QSerialPort::SerialPortError)),this,SLOT(errorReport(QSerialPort::SerialPortError)));

          jsulmJ Offline
          jsulmJ Offline
          jsulm
          Lifetime Qt Champion
          wrote on last edited by
          #18

          @Prath said in Regarding Projector Programming using QT:

          Is this correct?

          Signal is https://doc.qt.io/qt-5/qserialport.html#errorOccurred not error. Just check the documentation.

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          3
          • P Offline
            P Offline
            Prath
            wrote on last edited by
            #19

            I think it is correct @jsulm. We are catching the signal using the slot and then displaying the signal.

            JonBJ 1 Reply Last reply
            0
            • P Prath

              I think it is correct @jsulm. We are catching the signal using the slot and then displaying the signal.

              JonBJ Offline
              JonBJ Offline
              JonB
              wrote on last edited by
              #20

              @Prath
              You wrote

              connect(this->Serial,SIGNAL(error(QSerialPort::SerialPortError)),this,SLOT(errorReport(QSerialPort::SerialPortError)));
              

              Where you have SIGNAL(error(QSerialPort::SerialPortError)) @jsulm is expecting SIGNAL(errorOccurred(QSerialPort::SerialPortError)). If what you have works, we do not understand how.

              If you are writing new code and would change over to the new signal/slot syntax you would presumably receive a compile-time error.

              1 Reply Last reply
              2
              • P Offline
                P Offline
                Prath
                wrote on last edited by
                #21

                Sorry for the delay guys. I tried again with the code and couldn't retrieve anything from the serial port regarding the errror.
                I got the attached error:-
                IMG_20191124_125954.jpg

                1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #22

                  Your MainWindow class does not have such a signal, it's one from the QSerialPort.

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  2
                  • P Offline
                    P Offline
                    Prath
                    wrote on last edited by
                    #23

                    Didnt get you @SGaist .
                    Could you please help me with the syntax

                    1 Reply Last reply
                    0
                    • P Offline
                      P Offline
                      Prath
                      wrote on last edited by
                      #24

                      When I click on the push button the function on_pushButton_clicked is called and then I call the Qserialport to check the error. I think the code is written correctly.

                      What's your take?

                      jsulmJ 1 Reply Last reply
                      0
                      • P Prath

                        When I click on the push button the function on_pushButton_clicked is called and then I call the Qserialport to check the error. I think the code is written correctly.

                        What's your take?

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #25

                        @Prath said in Regarding Projector Programming using QT:

                        What's your take?

                        Your connect is wrong: MainWindow does NOT have signal error(QSerialPort::QSerialPort), this signal is in QSerialPort, so not in "this" but in "serial".

                        And please do not post screen-shots, copy paste your code...

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        JonBJ 1 Reply Last reply
                        3
                        • jsulmJ jsulm

                          @Prath said in Regarding Projector Programming using QT:

                          What's your take?

                          Your connect is wrong: MainWindow does NOT have signal error(QSerialPort::QSerialPort), this signal is in QSerialPort, so not in "this" but in "serial".

                          And please do not post screen-shots, copy paste your code...

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #26

                          @jsulm , @Prath

                          this signal is in QSerialPort, so not in "this" but in "serial".

                          Is this a case where changing to new-style signal/slot syntax would generate an error for the wrong "context" variable? Or, would testing the return result from the connect() or from https://doc.qt.io/qt-5/qmetaobject-connection.html#operator-bool in code tell the user if the connection has failed because of the wrong context?

                          jsulmJ 1 Reply Last reply
                          0
                          • JonBJ JonB

                            @jsulm , @Prath

                            this signal is in QSerialPort, so not in "this" but in "serial".

                            Is this a case where changing to new-style signal/slot syntax would generate an error for the wrong "context" variable? Or, would testing the return result from the connect() or from https://doc.qt.io/qt-5/qmetaobject-connection.html#operator-bool in code tell the user if the connection has failed because of the wrong context?

                            jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #27

                            @JonB Yes, new connect syntax would help here, unless MainWindow has a signal with exact same signature :-)

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            1
                            • P Offline
                              P Offline
                              Prath
                              wrote on last edited by
                              #28

                              Guys can we send two commands to two serial ports concurrently using QT?

                              1 Reply Last reply
                              0
                              • SGaistS Offline
                                SGaistS Offline
                                SGaist
                                Lifetime Qt Champion
                                wrote on last edited by
                                #29

                                If you mean use several QSerialPorts at the same time in one application then yes, no problem with that. If you mean something else, please give more details.

                                Interested in AI ? www.idiap.ch
                                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                P 1 Reply Last reply
                                2
                                • SGaistS SGaist

                                  If you mean use several QSerialPorts at the same time in one application then yes, no problem with that. If you mean something else, please give more details.

                                  P Offline
                                  P Offline
                                  Prath
                                  wrote on last edited by
                                  #30
                                  This post is deleted!
                                  1 Reply Last reply
                                  0

                                  • Login

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • Users
                                  • Groups
                                  • Search
                                  • Get Qt Extensions
                                  • Unsolved