How to get the angles from the ardupilot?

For a school project we are looking at using an ardupilot for a self stabilizing/horizontalizing board. Initially we will start with single-axis stabilization, like a seesaw or weighing scale. But for that we need to get the angles data from the Ardupilot board. 

With the mission planner software we get the correct orientation. But where can we find the roll and pitch values in the source code?

We are using an APM 2.5

Thanks in advance.

You need to be a member of diydrones to add comments!

Join diydrones

Email me when people reply –

Replies

  • Hi,

    in AP_AHRS.h:

        // Euler angles (radians)
        float roll;
        float pitch;
        float yaw;

        // integer Euler angles (Degrees * 100)
        int32_t roll_sensor;
        int32_t pitch_sensor;
        int32_t yaw_sensor;

    Regards

    Soren

This reply was deleted.

Activity

Neville Rodrigues liked Neville Rodrigues's profile
Jun 30
Santiago Perez liked Santiago Perez's profile
Jun 21
More…