Source code for isaaclab_contrib.controllers.lee_attitude_control_cfg
# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
from isaaclab.utils.configclass import configclass
from .lee_attitude_control import LeeAttController
from .lee_controller_base_cfg import LeeControllerBaseCfg
[docs]
@configclass
class LeeAttControllerCfg(LeeControllerBaseCfg):
"""Configuration for a Lee-style geometric quadrotor attitude controller.
Unless otherwise noted, vectors are ordered as (x, y, z) in the simulation world/body frames.
The attitude controller gains are sampled uniformly per environment between
their corresponding ``*_min`` and ``*_max`` bounds at reset.
"""
class_type: type = LeeAttController
"""The class type for the attitude controller."""