Merge pull request #17 from mrjimenez/pr_2

Fixes an ISO-8859-1 vs UTF-8 issue
This commit is contained in:
Kevin Townsend
2018-09-17 21:24:26 +02:00
committed by GitHub

6
Adafruit_Sensor.h Normal file → Executable file
View File

@ -72,9 +72,9 @@ typedef struct {
};
/* Orientation sensors */
struct {
float roll; /**< Rotation around the longitudinal axis (the plane body, 'X axis'). Roll is positive and increasing when moving downward. -90<EFBFBD><=roll<=90<EFBFBD> */
float pitch; /**< Rotation around the lateral axis (the wing span, 'Y axis'). Pitch is positive and increasing when moving upwards. -180<EFBFBD><=pitch<=180<EFBFBD>) */
float heading; /**< Angle between the longitudinal axis (the plane body) and magnetic north, measured clockwise when viewing from the top of the device. 0-359<EFBFBD> */
float roll; /**< Rotation around the longitudinal axis (the plane body, 'X axis'). Roll is positive and increasing when moving downward. -90°<=roll<=90° */
float pitch; /**< Rotation around the lateral axis (the wing span, 'Y axis'). Pitch is positive and increasing when moving upwards. -180°<=pitch<=180°) */
float heading; /**< Angle between the longitudinal axis (the plane body) and magnetic north, measured clockwise when viewing from the top of the device. 0-359° */
};
};
int8_t status;