- ID: enc03r
- Name: Grove Single Axis Analog Gyro
- Other Names: ENC03R
- Category: compass
- Manufacturer: seeed
- Connection: analog
UPM module for the ENC03R Single Axis Analog Gyro. This gyroscope measures the x-axis angular velocity; that is, how fast the sensor is rotating around the x-axis. Calibration of the sensor is necessary for accurate readings.
cout << "Please place the sensor in a stable location, and do not" << endl;
cout << "move it while calibration takes place." << endl;
cout << "This may take a couple of minutes." << endl;
cout << "Calibration complete. Reference value: "
while (shouldRun)
{
unsigned int val = gyro->
value();
cout << "Raw value: " << val << ", "
<< "angular velocity: " << av << " deg/s" << endl;
usleep(100000);
}