Last active
July 18, 2024 16:57
-
-
Save Williangalvani/2583c221cfd22708b77ec1ae5d481c8d to your computer and use it in GitHub Desktop.
RC_CHANNELS_OVERRIDE mavlink2rest example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from mavlink2rest_helper import Mavlink2RestHelper | |
import time | |
MAVLINK2REST_ADDRESS = "http://192.168.15.132/mavlink2rest" | |
helper = Mavlink2RestHelper(MAVLINK2REST_ADDRESS) | |
def set_servo_params(): | |
"""Set all SERVO_FUNCTIONS to RCIN""" | |
for servo in range(1, 17): | |
function = servo + 50 | |
print(f"Setting SERVO{servo}_FUNCTION to {function}") | |
helper.set_param(f"SERVO{servo}_FUNCTION", "MAV_PARAM_TYPE_UINT8", function) | |
time.sleep(0.1) | |
def main(): | |
print("Starting direct_thruster_control") | |
print("Setting parameters") | |
set_servo_params() | |
while True: | |
print("Moving up...") | |
for _ in range(10): | |
helper.send_rc_override([1550] * 16) | |
time.sleep(0.2) | |
print("Moving down...") | |
for _ in range(10): | |
helper.send_rc_override([1450] * 16) | |
time.sleep(0.2) | |
print("Done") | |
if __name__ == "__main__": | |
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import time | |
from typing import Any, Optional | |
import requests | |
from loguru import logger | |
GPS_GLOBAL_ORIGIN_ID = 49 | |
# pylint: disable=too-many-instance-attributes | |
class Mavlink2RestHelper: | |
""" | |
Responsible for interfacing with Mavlink2Rest | |
""" | |
def __init__(self, m2r_url: str, vehicle: int = 1, component: int = 1): | |
# store vehicle and component to access telemetry data from | |
self.url = m2r_url | |
self.vehicle = vehicle | |
self.component = component | |
self.rc_channels_override_template = """ | |
{{ | |
"header": {{ | |
"system_id": 255, | |
"component_id": 0, | |
"sequence": 0 | |
}}, | |
"message": {{ | |
"type": "RC_CHANNELS_OVERRIDE", | |
"chan1_raw": {0}, | |
"chan2_raw": {1}, | |
"chan3_raw": {2}, | |
"chan4_raw": {3}, | |
"chan5_raw": {4}, | |
"chan6_raw": {5}, | |
"chan7_raw": {6}, | |
"chan8_raw": {7}, | |
"chan9_raw": {8}, | |
"chan10_raw":{9}, | |
"chan11_raw":{10}, | |
"chan12_raw":{11}, | |
"chan13_raw":{12}, | |
"chan14_raw":{13}, | |
"chan15_raw":{14}, | |
"chan16_raw":{15}, | |
"chan17_raw":0, | |
"chan18_raw":0, | |
"target_system": 1, | |
"target_component": 1 | |
}} | |
}} | |
""" | |
def set_param(self, param_name, param_type, param_value): | |
""" | |
Sets parameter "param_name" of type param_type to value "value" in the autpilot | |
Returns True if succesful, False otherwise | |
""" | |
try: | |
data = json.loads(requests.get(self.url + "/v1/helper/mavlink?name=PARAM_SET").text) | |
for i, char in enumerate(param_name): | |
data["message"]["param_id"][i] = char | |
data["message"]["param_type"] = {"type": param_type} | |
data["message"]["param_value"] = param_value | |
result = requests.post(self.url + "/mavlink", json=data) | |
return result.status_code == 200 | |
except Exception as error: | |
logger.warning(f"Error setting parameter '{param_name}': {error}") | |
return False | |
def send_rc_override(self, channel): | |
""" | |
Sends STATUSTEXT message to the GCS | |
""" | |
# make sure we have at least 16 channels | |
# center the remaining ones | |
if len(channel) < 16: | |
channel = channel + [1500] * (16 - len(channel)) | |
data = json.loads(self.rc_channels_override_template.format(*channel)) | |
try: | |
requests.post(self.url + "/mavlink", json=data) | |
except Exception as error: | |
logger.warning(f"Error sending RC_CHANNELS_OVERRIDE: {error}") | |
return False | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment