IMU::getPitch()

Obtain the pitch angle θ (pitch): rotate around the Y axis.

Return Values

Parameters

Type

Description

number

float

Pitch angle θ (pitch): rotating around the Y axis

Example

circle-info

This feature requires an upgrade to the latest SDKarrow-up-right.

Use the uKit Explore v2 board to get the roll and pitch angle of the gyroscope and display it every 400ms to the serial monitor.

#include "uKitExplore2.h"
void setup() {    
    Initialization();    
    IMU::init();
}

void loop() {    
    IMU::read();    
    Serial.print("Roll:");    
    Serial.print(IMU::getRoll());    
    Serial.print(",Pitch:");    
    Serial.println(IMU::getPitch());    
    delay(400);
}
Obtain the pitch angle θ (pitch): rotate around the Y axis.

Last updated

Was this helpful?