Navigation

    Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order

    C290 With Duet lapse

    Third-party software
    3
    7
    115
    Loading More Posts
    • 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.
    • TRATOON
      TRATOON last edited by

      Can someone quickly confirm that the Logitech C290 Will work with a rapsberry pi on a Duet 3 Running Duet Lapse?

      1 Reply Last reply Reply Quote 0
      • stuartofmt
        stuartofmt last edited by

        @tratoon said in C290 With Duet lapse:

        Logitech C290

        The short answer is "highly likely". I've tested both USB and Pi specific cameras with DuetLapse. DuetLapse directly supports USB cameras provided fswebcam is installed.

        You may also prefer to use:
        https://github.com/stuartofmt/videostream
        to connect to the camera (provides you with browser based viewing) and use DuetLapse to connect to the videostream output.

        I wrote both programs and can help get you going if you have trouble.

        TRATOON 1 Reply Last reply Reply Quote 1
        • TRATOON
          TRATOON @stuartofmt last edited by

          @stuartofmt Thank you for the reply, my C290 and Pi just arrived. Would it be possible to have a live feed of the camera in the DWC and have a timelapse recording during a print? If so, how would I do it?

          stuartofmt 1 Reply Last reply Reply Quote 0
          • stuartofmt
            stuartofmt @TRATOON last edited by stuartofmt

            @tratoon

            Yes - this is entirely possible.

            For the most part, the camera libraries in the Pi only allow one connection at a time. This is in part why I wrote videostream. It provides a http interface that can handle multiple connections to the video feed.
            I use it all the time with DuetLapse and a browser. The camera display in DWC can also be connected to videostream as the connection is the same as using a browser.

            It's all documented fairly comprehensively, if there is something that needs clarification, let me know.

            One thing I would say (if you are not overly familiar with the Pi etc.) - take it a step at a time.
            For example - make sure that the camera works using fswebcam first, then get videostream working and finally DuetLapse3.

            code7 1 Reply Last reply Reply Quote 0
            • code7
              code7 @stuartofmt last edited by

              @stuartofmt I am receiving this error message while testing to see if the USB camera will work with DuetLapse3. Does this response mean the camera is not compatible or might I be overlooking something else?

              pi@duet3:~/DuetLapse3 $ fswebcam image.jpg
              --- Opening /dev/video0...
              Trying source module v4l2...
              Error opening device: /dev/video0
              open: Permission denied
              Trying source module v4l1...
              Error opening device: /dev/video0
              open: Permission denied
              Unable to find a source module that can read /dev/video0.
              

              Delta Printer Using a Duet 2 Wifi v1.04c, FW3.4.0beta2, Duet WiFi sever 1.26, Duet Web Control 3.3.0

              stuartofmt 1 Reply Last reply Reply Quote 0
              • stuartofmt
                stuartofmt @code7 last edited by

                @code7

                A couple of questions:
                What OS are you using?

                cat /etc/os-release
                

                The camera may not be /dev/video0.

                With the camera unplugged.

                1. What is the output of :
                v4l2-ctl --list-devices
                
                1. What is the output of:
                ls /dev/video*
                

                Plug in the camera and repeat the two commands above as well as:

                dmesg
                

                What new device showed up ?

                fswebcam can be directed to explicitly a particular camera with the form:

                fswebcam --device /dev/video[x] image.jpg
                

                Depending on how your Pi is set up there can be multiple logical camera's identified.

                You can also try these test programs:
                https://github.com/stuartofmt/Pi-Notes/blob/master/Resolution Testing.md

                stuartofmt 1 Reply Last reply Reply Quote 1
                • stuartofmt
                  stuartofmt @stuartofmt last edited by

                  @code7

                  Have you had success?

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post
                  Unless otherwise noted, all forum content is licensed under CC-BY-SA