Gy 35 Mb Single Axis Gyroscope Analog Gyro Module Enc 03Mb Module
Rs. 297.00 Rs. 366.00
- Brand: https://www.mouser.com/catalog/specsheets/ENC-03M_ref.PDF
- Product Code: SEN-GYRO
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Chip | ENC-03MB |
-Op amp | The MCP601 (SOT23-5 package, excellent performance) |
-Power supply | 3-5v |
-Output modes | analog output |
-Ultra-small size | 10mm * 17.5m |
SPECIFICATIONS:
-Ultra-small and ultra-lightweight
-Quick response
-Low driving voltage, low current consumption
-Lead type : SMD
-Reflow soldering (standard peek temp. 245 degree C)
OVERVIEW:
-This product is an angular velocity sensor that uses the phenomenon of Coriolis force, which is generated when a rotational angular velocity is applied to the vibrator.
-Murata's original small ceramic bimorph vibrator and simple Cap-Base structure achieve an ultra-small size of about 0.2cc.
-Their small and lightweight shape increase flexibility of installment and help your apparatuses to be downsized.
-These surface-mountable devices can be mounted by automatic surface mounters.
PACKAGE INCLUDES:
1 PCS x Gy 35 Enc 03Mb Single Axis Gyroscope Analog
https://www.mouser.com/catalog/specsheets/ENC-03M_ref.PDF
//SOURCE CODE TAKEN FROM BELOW LINK
//https://forum.arduino.cc/index.php?topic=370043.0
double adcIn, ref, rate, initTime, rot=0;
void setup() {}
void loop() {
initTime = millis();
adcIn = analogRead(0)/1023.0;
ref = analogRead(1)/1023.0;
if(((1000*adcIn)-(1000.0*ref))>10) //deadzone of +/- 10mV
rate=(adcIn-ref)/(0.67/1000.0); //change the rate correctly
else
rate = 0;
rot+=rate*(millis()-initTime)/1000.0; //apply the rate to the heading
Serial.print(rot);
Serial.println(" deg");
Serial.print(rate);
Serial.println(" deg/s");
Serial.print(adcIn*1000);
Serial.println(" mV ADC");
Serial.print(ref*1000);
Serial.println(" mV Reference");
Serial.println();
Serial.println();
}
15 days