Skip to content

Gyro_Breakout_Board(SKU_SEN0070)

Angelo edited this page Sep 21, 2016 · 3 revisions

Gyro Breakout Board -ADXRS610

Introduction

The ADXRS MEMs gyroscope from Analog Devices is a great sensor. You can now use gyroscope rate sensing in your own projects with this miniature breakout board from DFRobot. Units come fully populated and tested with an empty 0.1" spaced footprint ready for a straight header(included in the pack), right angle header, or your own wires/umbilical cable.

Applications

  • Vehicle chassis rollover sensing
  • Inertial measurement units
  • Platform stabilization

Specifications

  • Voltage: 5V DC
  • Interface: Analog Outputs
  • Chip: ADXRS610
  • 300 degrees/sec
  • Temperature sensor output
  • Self-test on digital command
  • Z-axis (yaw rate) response
  • Dimensions: 16mmx20mm
  • Weight: 1g without header

Shipping list

  • Gyro Break Board-ADXRS610 x1
  • straight header x1

Wiring Diagram

Connection diagram for Gyro breakout board

Sample Code

int z;

void setup()
{
  Serial.begin(9600);           // sets the serial port to 9600
}

void loop()
{
  z = analogRead(0);       // read analog input pin 0
  Serial.print("rotation rate in z: ");
  Serial.println(z, DEC);  // print the rotation rate in the Z axis
  delay(100);              // wait 100ms for next reading
}

image:nextredirectltr.pngGo shopping gyro breakout board(sku:sen0070) category: Product Manual category: SEN Series category: Sensor category: Source category: Diagram category: DFRobot

Clone this wiki locally