MissionPlanner.MAVLinkInterface.setParam C# (CSharp) Method

setParam() public method

set param on apm, used for param rename
public setParam ( string paramnames, double value ) : bool
paramnames string
value double
return bool
        public bool setParam(string[] paramnames, double value)
        {
            foreach (string paramname in paramnames)
            {
                if (setParam(paramname, value))
                {
                    return true;
                }
            }
            return false;
        }

Same methods

MAVLinkInterface::setParam ( byte sysid, byte compid, string paramname, double value, bool force = false ) : bool
MAVLinkInterface::setParam ( string paramname, double value, bool force = false ) : bool