ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. restore
    3. Posts
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 56
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by restore

    • RE: Trigger Hadron camera with DO_SET_CAM_TRIGG_DIST

      @Eric-Katzfey I configured the drone to have servo5 trigger the camera. When idle, servo 5 shows 1100. When triggered, it goes up to 1300. In the Mavlink messages I can now watch for SERVO_OUTPUT_RAW msg.servo5_raw and detect the rising edge which emulates the trigger.

      msg = master.recv_match(type='SERVO_OUTPUT_RAW', blocking=True, timeout=2)
      if not msg:
          continue
      pwm = msg.servo5_raw
      

      I have done this on a ground station using pymavlink to listen for messages. What is the best way to listen for this mavlink message on the VOXL2? Reminder - I am using Ardupilot.

      posted in VOXL 2
      R
      restore
    • RE: Trigger Hadron camera with DO_SET_CAM_TRIGG_DIST

      @Eric-Katzfey We have the Hadron configured with voxl-camera-server.conf

      "type": "ov64b",
      "name": "hires",
      ....
      "en_snapshot": true,
      ...
      

      so we can take images with voxl-send-command hires_snapshot snapshot

      I would love to configure the camera in Ardupilot with CAM1_TYPE and set DO_SET_CAM_TRIGG_DIST to a distance interval that I will capture images at.

      If that is not directly possible, could you help me with a way to create a sort of interface script that sits on VOXL2 that listens for GPIO relay triggers or something like that? Then I can just call the snapshot command when triggered.

      posted in VOXL 2
      R
      restore
    • Trigger Hadron camera with DO_SET_CAM_TRIGG_DIST

      I have a VOXL2 running ardupilot and have a Hadron camera connected and configured with voxl-camera-server. I can take snapshots successfully.

      I am trying to configure our drone to capture images at a specific distance interval during flight with the DO_SET_CAM_TRIGG_DIST parameter. Is there a way to do this with VOXL2 and ardupilot?

      Thanks!

      posted in VOXL 2
      R
      restore
    • RE: Issues Streaming and Taking Snapshots Simultaneously with OV64B on VOXL2 (Hadron 640 Setup)

      @Alex-Kushleyev thank you! It works now.

      posted in Ask your questions right here!
      R
      restore
    • Issues Streaming and Taking Snapshots Simultaneously with OV64B on VOXL2 (Hadron 640 Setup)

      Hi,
      I'm working with a VOXL2 and the FLIR Hadron 640 camera, and I'm trying to stream video from the OV64B sensor while taking snapshots at the same time.

      Initially, I attempted to use "en_preview": true along with "en_snapshot": true, but that configuration did not allow me to stream video. I assumed it might be a resolution constraint, so I modified the configuration to use "en_small_video": true and "en_snapshot": true instead.

      Now I can stream video, and when I enter the following command:
      voxl2:/data/snapshots$ voxl-send-command hires_snapshot
      Successfully sent command to /run/mpa/hires_snapshot/control
      In the voxl-camera-server terminal, I receive this error:
      ERROR: Camera: hires got unknown Command:
      However, when I enter:
      voxl2:/data/snapshots$ voxl-send-command hires_snapshot snapshot-no-save
      Successfully sent command to /run/mpa/hires_snapshot/control
      The camera server shows:
      ------ voxl-camera-server: Camera server is now running
      Camera: hires taking snapshot for pipe only (not saving it)
      But I’m unable to access the snapshot data, even after running adb pull.
      My Questions:
      Is it possible to stream and take snapshots simultaneously on the OV64B?

      What does the error message “Camera: hires got unknown Command” mean?

      How can I access the output of snapshot-no-save if it's not being saved to disk?

      Thanks in advance for your help!
      Below is my camera config code:
      {
      "version": 0.1,
      "fsync_en": false,
      "fsync_gpio": 109,
      "cameras": [
      {
      "type": "boson",
      "name": "boson",
      "enabled": true,
      "camera_id": 0,
      "fps": 30,
      "en_preview": true,
      "en_misp": false,
      "preview_width": 640,
      "preview_height": 512,
      "en_raw_preview": true,
      "en_small_video": false,
      "en_large_video": false,
      "ae_mode": "off"
      },
      {
      "type": "ov64b",
      "name": "hires",
      "enabled": true,
      "camera_id": 1,
      "fps": 15,
      "en_preview": false,
      "en_misp": false,
      "preview_width": 1920,
      "preview_height": 1080,
      "en_raw_preview": false,
      "en_small_video": true,
      "small_video_width": 1024,
      "small_video_height": 768,
      "small_venc_mode": "h265",
      "en_large_video": false,
      "small_venc_br_ctrl": "cqp",
      "small_venc_Qfixed": 30,
      "small_venc_Qmin": 15,
      "small_venc_Qmax": 40,
      "small_venc_nPframes": 9,
      "small_venc_mbps": 2,
      "en_snapshot": true,
      "en_snapshot_width": 1920,
      "en_snapshot_height": 1080,
      "ae_mode": "isp",
      "gain_min": 54,
      "gain_max": 32000
      }
      ]
      }

      posted in Ask your questions right here!
      R
      restore
    • Logging altitude and/or barometer

      I was wondering if there is a way to log altitude and/or barometer data similar to voxl-logger for imu data.

      Thanks

      posted in VOXL 2
      R
      restore
    • RE: VOXL2 detected landing at ~27m altitude and cut motors

      @Alex-Kushleyev yes you can reference the log

      posted in Ask your questions right here!
      R
      restore
    • VOXL2 detected landing at ~27m altitude and cut motors

      We were attempting a tuning flight with a fresh rebuild and while checking stability all motors shut off, drone flipped and crashed inverted. Log attached, of note is in the logged messages "landing detected at 09:13 while it was approximately 27m in the air.

      https://review.px4.io/plot_app?log=6ad22692-fe3f-4cce-b8f0-a812d91bfa16

      Hardware:
      VOXL2
      FPV ESC
      Tmotor MN5006 450kv (params tuned for low kv)
      Doodle Meshrider radio
      Control via Jeti RC connected to GCS

      posted in Ask your questions right here!
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev I found that the parameters were just not used and once I set them with px4-param set PARAM_NAME param-value that they show up in QGC

      One that I am still stuck on though. I am looking for a parameter TRIG_PINS that is not in the list of params in px4-param show -a

      The default is 56 and I need to know how to map the pins to the PWM expansion board. From px4 documentation:

      TRIGGER_INTERFACE = 2
      "Enables the Seagull MAP2 interface. This allows the use of the Seagull MAP2 to interface to a multitude of supported cameras. Pin 1 of the MAP2 should be connected to the lower AUX pin of TRIG_PINS (therefore, pin 1 to AUX 5 and pin 2 to AUX 6 by default). In this mode, PX4 also supports automatic power control and keep-alive functionalities of Sony Multiport cameras like the QX-1."

      posted in VOXL 2 IO
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev I am looking to enable the seagull trigger in camera interfaces as shown here , but I do not see that option. I see that the interface is in the modalai repo but how do I enable it to show up in QGC?

      posted in VOXL 2 IO
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev Okay I can do some searching for how to setup the trigger.

      For the camera trigger.
      Neutral state is 1500 microseconds
      To trigger the camera, change the duty cycle to yield 1200 microseconds and hold that for one second before switching back to 1500 microseconds

      Is that something that can be done?

      posted in VOXL 2 IO
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev okay I upgraded px4 and updated the px4-start script - now see 8 pwm channels.

      I need to configure the camera trigger as shown in the image below (it is shown in mission planner and I am not sure how to do it in QGC)
      CameraTriggerConfig.JPG

      Can you please explain how I can configure the PWM output to trigger a shutter "pushed".

      Thanks!

      posted in VOXL 2 IO
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev we are all good on the RC front. We have the PWM expansion board and are trying to understand how to configure QGC. In the actuators tab, the I/O board is recognized but in the VOXL2 IO output tab it only shows 4 pwm channels that are all set to motors (which we don’t need). How can we use one of the other channels or configure one of the first 4 to provide a standard PWM that we can use for our camera trigger interface?

      posted in VOXL 2 IO
      R
      restore
    • RE: IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev yes I am looking to output standard PWM signals. We have the VOXL2 I/O expander board (MDK-M0065). We originally got it for RC connection but we’re also hoping to use the PWM capability for camera triggering.

      posted in VOXL 2 IO
      R
      restore
    • IO board for PWM output using the 4in1 ESC M0138-1

      @Alex-Kushleyev I would like to use the IO board to output a PWM for this camera trigger adapter. I do not need it to control motors as we are using the FPV 4in1 ESC.

      Can you please give me instructions on how to configure voxl and QGC to output the PWM? Do I need to upgrade the IO board firmware?

      Thanks

      posted in VOXL 2 IO
      R
      restore
    • RE: PX4 params missing

      @riteshsharma do the SDK installation with ./install.sh -w option. This will wipe the entire file system including the /data partition which is usually untouched.

      posted in VOXL 2
      R
      restore
    • RE: PX4 params missing

      @tom a full wipe SDK install sorted it out. Thanks

      posted in VOXL 2
      R
      restore
    • RE: VOXL portal not working

      @tom the full wipe SDK install sorted it out. Thanks

      posted in VOXL 2
      R
      restore
    • RE: Camera Trigger Interface (Still Images)

      @Nathan-Sullivan-0 would you be willing to share your methods/code for using the Sony SDK? I have a similar application.

      posted in VOXL 2
      R
      restore
    • RE: VOXL portal not working

      @tom we tried that and still have the same behavior. Everything seems to run successfully.

      posted in VOXL 2
      R
      restore