Recent content by smylion

  1. S

    Open Solo + Rpi + Gimbal

    It works ! Thank you for your help and your work. I'm going to look at the whole code because there are other things that I find weird.
  2. S

    Open Solo + Rpi + Gimbal

    MavlinkConfig.py : class MavConfig: droneSolo = 0 def __init__(self,vehicle): self.droneSolo = vehicle def ConfigureStreamMessage(self): msg = self.droneSolo.message_factory.request_data_stream_encode(0,0, 1, 0,0) self.droneSolo.send_mavlink(msg) msg =...
  3. S

    Open Solo + Rpi + Gimbal

    from MavlinkConfig import MavConfig # Configure the stream of messages from the drone to the Raspberry (Serial Port 4) configurationMavlink = MavConfig(vehicle) configurationMavlink.ConfigureStreamMessage() if i comment on the last line, the code works, vehicle.channels['6'] is updated. would...
  4. S

    Open Solo + Rpi + Gimbal

    Yes. I'm trying to see where the problem may be
  5. S

    Open Solo + Rpi + Gimbal

    The error comes from the SoloMapper.py script. This code works on the Raspberry : from dronekit import connect vehicle = connect("/dev/ttyUSB0", baud = "230400", wait_ready=True) while (1) : print(" Ch6: %s" % vehicle.channels['6']) But vehicle.channels['6'] is not updated in the...
  6. S

    Open Solo + Rpi + Gimbal

    I think the problem comes from the dronekit version. There was an update 1 year ago. By installing the latest version on my pc, the script works normally. I am updating the raspberry which is on the drone. I keep you informed
  7. S

    Open Solo + Rpi + Gimbal

    Ok thanks, I have the same problem whatever the channel
  8. S

    Open Solo + Rpi + Gimbal

    In the stock firmware and in OpenSolo firmware, SR1_RC_CHAN = 5
  9. S

    Open Solo + Rpi + Gimbal

    I thought that the problem came from Mavlink but by testing bits of code I noticed the error. I will look at the value of the parameter SR1_RC_CHAN
  10. S

    Open Solo + Rpi + Gimbal

    Here's what happens with a sample code : import ConfigParser ConfigSolo = ConfigParser.ConfigParser() SoloSerialPort = ConfigSolo.get("Solo", "SoloSerialPort") #SoloSerialPort : /dev/ttyUSB0 SoloSerialBaudrate = ConfigSolo.get("Solo", "SoloSerialBaudrate") #230400 vehicle =...
  11. S

    Open Solo + Rpi + Gimbal

    ok thanks, I will look at the IDs
  12. S

    Open Solo + Rpi + Gimbal

    The raspberry gets the information by Mavlink. Python files have not been changed. They are found in the raspberry. The manual tilting of the gimbal has never worked under opensolo but works with the original firemware. The topics I found dealing with this problem do not use the connectors of...
  13. S

    Open Solo + Rpi + Gimbal

    Hello everyone, I have a problem with a gimbal since going under Open Solo (version 4). The gimbal is controlled from an Rpi with a shield to control 2 servos. The Rpi retrieves information from the connectors of the gopro gimbal via USB. The camera’s stabilization works correctly but I can...
  14. S

    Solex and Open Solo 4

    ok thank you
  15. S

    Solex and Open Solo 4

    Open Solo 4-dev exist ? (link below) https://github.com/Pedals2Paddles/OpenSolo/wiki/Install-via-Solex-App I have the black cube. I need to install open solo 3 and ardupilot 3.7 as in this link ? https://3drpilots.com/threads/open-solo-3-0-arducopter-dev-3-7.14871/