Servo etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Servo etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

2014-07-08

Arduino UNO + MPU-6050 Pitch - Roll Code for 2 Servo motors

The following code uses Arduino UNO alongside GY-521 breakout board with MPU-6050 Accelerometer and Gyroscope to control two servo motors. I couldn't find an alternative good code. Just managed to modify the below code from original Jeff Rowberg version to do the motion simulation task. Currently the two axis servo motors follow MPU-6050 breakout motions. To make a gimbal I think I would need to modify the code so that servo angles become "180-current" value. I tried this code a few minutes ago. Good news is that it is smooth and it does not jitter. I wonder if it can be made faster. I have some doubts whether if I can use this code as gimbal to stablize GoPro. Reaction time and mechanical power would be important in Gimbal setting usage. The code is dirty looking but it works fine. I will have to do some clean-up to get rid of unnecessary lines or do a complete rewrite. I just share it because I could not find a better code.

With a radio remote transmitter the sensor can be used as DIY camera head tracking for FPV cameras. You turn your head and camera would look at the direction you turned your head. You can find "Head Tracker FPV" - project's on Youtube but most would not say how they managed to do it.






// I2C device class (I2Cdev) demonstration Arduino sketch for MPU6050 class using DMP (MotionApps v2.0)
// 6/21/2012 by Jeff Rowberg <jeff@rowberg.net>
// Updates should (hopefully) always be available at https://github.com/jrowberg/i2cdevlib
//
// Changelog:
//      2013-07-08 - Nevit Dilmen Modified for use with 2 axis Roll-Pitch servos as X&Y angle changes
//                   http://nevit.blogspot.com.tr/search/label/MPU-6050
//                   It should be simpler hopefully. 
//      2013-05-08 - added seamless Fastwire support
//                 - added note about gyro calibration
//      2012-06-21 - added note about Arduino 1.0.1 + Leonardo compatibility error
//      2012-06-20 - improved FIFO overflow handling and simplified read process
//      2012-06-19 - completely rearranged DMP initialization code and simplification
//      2012-06-13 - pull gyro and accel data from FIFO packet instead of reading directly
//      2012-06-09 - fix broken FIFO read sequence and change interrupt detection to RISING
//      2012-06-05 - add gravity-compensated initial reference frame acceleration output
//                 - add 3D math helper file to DMP6 example sketch
//                 - add Euler output and Yaw/Pitch/Roll output formats
//      2012-06-04 - remove accel offset clearing for better results (thanks Sungon Lee)
//      2012-06-01 - fixed gyro sensitivity to be 2000 deg/sec instead of 250
//      2012-05-30 - basic DMP initialization working

/* ============================================
I2Cdev device library code is placed under the MIT license
Copyright (c) 2012 Jeff Rowberg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
===============================================
*/

//Servo 
#include <Servo.h>

Servo myservoY; // Roll
Servo myservoX; // Pitch

// I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files
// for both classes must be in the include path of your project
#include "I2Cdev.h"

#include "MPU6050_6Axis_MotionApps20.h"
//#include "MPU6050.h" // not necessary if using MotionApps include file

// Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation
// is used in I2Cdev.h
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
    #include "Wire.h"
#endif

// class default I2C address is 0x68
// specific I2C addresses may be passed as a parameter here
// AD0 low = 0x68 (default for SparkFun breakout and InvenSense evaluation board)
// AD0 high = 0x69
MPU6050 mpu;
//MPU6050 mpu(0x69); // <-- use for AD0 high

/* =========================================================================
   NOTE: In addition to connection 3.3v, GND, SDA, and SCL, this sketch
   depends on the MPU-6050's INT pin being connected to the Arduino's
   external interrupt #0 pin. On the Arduino Uno and Mega 2560, this is
   digital I/O pin 2.
 * ========================================================================= */

/* =========================================================================
   NOTE: Arduino v1.0.1 with the Leonardo board generates a compile error
   when using Serial.write(buf, len). The Teapot output uses this method.
   The solution requires a modification to the Arduino USBAPI.h file, which
   is fortunately simple, but annoying. This will be fixed in the next IDE
   release. For more info, see these links:

   http://arduino.cc/forum/index.php/topic,109987.0.html
   http://code.google.com/p/arduino/issues/detail?id=958
 * ========================================================================= */



// uncomment "OUTPUT_READABLE_YAWPITCHROLL" if you want to see the yaw/
// pitch/roll angles (in degrees) calculated from the quaternions coming
// from the FIFO. Note this also requires gravity vector calculations.
// Also note that yaw/pitch/roll angles suffer from gimbal lock (for
// more info, see: http://en.wikipedia.org/wiki/Gimbal_lock)
#define OUTPUT_READABLE_YAWPITCHROLL

#define LED_PIN 13 // (Arduino is 13, Teensy is 11, Teensy++ is 6)
bool blinkState = false;

// MPU control/status vars
bool dmpReady = false;  // set true if DMP init was successful
uint8_t mpuIntStatus;   // holds actual interrupt status byte from MPU
uint8_t devStatus;      // return status after each device operation (0 = success, !0 = error)
uint16_t packetSize;    // expected DMP packet size (default is 42 bytes)
uint16_t fifoCount;     // count of all bytes currently in FIFO
uint8_t fifoBuffer[64]; // FIFO storage buffer

// orientation/motion vars
Quaternion q;           // [w, x, y, z]         quaternion container
VectorInt16 aa;         // [x, y, z]            accel sensor measurements
VectorInt16 aaReal;     // [x, y, z]            gravity-free accel sensor measurements
VectorInt16 aaWorld;    // [x, y, z]            world-frame accel sensor measurements
VectorFloat gravity;    // [x, y, z]            gravity vector
float euler[3];         // [psi, theta, phi]    Euler angle container
float ypr[3];           // [yaw, pitch, roll]   yaw/pitch/roll container and gravity vector

// packet structure for InvenSense teapot demo
uint8_t teapotPacket[14] = { '$', 0x02, 0,0, 0,0, 0,0, 0,0, 0x00, 0x00, '\r', '\n' };



// ================================================================
// ===               INTERRUPT DETECTION ROUTINE                ===
// ================================================================

volatile bool mpuInterrupt = false;     // indicates whether MPU interrupt pin has gone high
void dmpDataReady() {
    mpuInterrupt = true;
}



// ================================================================
// ===                      INITIAL SETUP                       ===
// ================================================================

void setup() {
    // join I2C bus (I2Cdev library doesn't do this automatically)
    #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
        Wire.begin();
        TWBR = 24; // 400kHz I2C clock (200kHz if CPU is 8MHz)
    #elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
        Fastwire::setup(400, true);
    #endif

//Attach servo

  myservoY.attach(9); // Attach Y servo to pin 9
  myservoX.attach(10);// Attach X servo to pin 10

    // initialize serial communication
    // (115200 chosen because it is required for Teapot Demo output, but it's
    // really up to you depending on your project)
    Serial.begin(115200);
    while (!Serial); // wait for Leonardo enumeration, others continue immediately

    // NOTE: 8MHz or slower host processors, like the Teensy @ 3.3v or Ardunio
    // Pro Mini running at 3.3v, cannot handle this baud rate reliably due to
    // the baud timing being too misaligned with processor ticks. You must use
    // 38400 or slower in these cases, or use some kind of external separate
    // crystal solution for the UART timer.

    // initialize device
    Serial.println(F("Initializing I2C devices..."));
    mpu.initialize();

    // verify connection
    Serial.println(F("Testing device connections..."));
    Serial.println(mpu.testConnection() ? F("MPU6050 connection successful") : F("MPU6050 connection failed"));
/*
    // wait for ready
    Serial.println(F("\nSend any character to begin DMP programming and demo: "));
    while (Serial.available() && Serial.read()); // empty buffer
    while (!Serial.available());                 // wait for data
    while (Serial.available() && Serial.read()); // empty buffer again
*/
    // load and configure the DMP
    Serial.println(F("Initializing DMP..."));
    devStatus = mpu.dmpInitialize();

    // supply your own gyro offsets here, scaled for min sensitivity
    mpu.setXGyroOffset(220);
    mpu.setYGyroOffset(76);
    mpu.setZGyroOffset(-85);
    mpu.setZAccelOffset(1788); // 1688 factory default for my test chip

    // make sure it worked (returns 0 if so)
    if (devStatus == 0) {
        // turn on the DMP, now that it's ready
        Serial.println(F("Enabling DMP..."));
        mpu.setDMPEnabled(true);

        // enable Arduino interrupt detection
        Serial.println(F("Enabling interrupt detection (Arduino external interrupt 0)..."));
        attachInterrupt(0, dmpDataReady, RISING);
        mpuIntStatus = mpu.getIntStatus();

        // set our DMP Ready flag so the main loop() function knows it's okay to use it
        Serial.println(F("DMP ready! Waiting for first interrupt..."));
        dmpReady = true;

        // get expected DMP packet size for later comparison
        packetSize = mpu.dmpGetFIFOPacketSize();
    } else {
        // ERROR!
        // 1 = initial memory load failed
        // 2 = DMP configuration updates failed
        // (if it's going to break, usually the code will be 1)
        Serial.print(F("DMP Initialization failed (code "));
        Serial.print(devStatus);
        Serial.println(F(")"));
    }

    // configure LED for output
    pinMode(LED_PIN, OUTPUT);
}



// ================================================================
// ===                    MAIN PROGRAM LOOP                     ===
// ================================================================

void loop() {
    // if programming failed, don't try to do anything
    if (!dmpReady) return;

    // wait for MPU interrupt or extra packet(s) available
    while (!mpuInterrupt && fifoCount < packetSize) {
        // other program behavior stuff here
        // .
        // .
        // .
        // if you are really paranoid you can frequently test in between other
        // stuff to see if mpuInterrupt is true, and if so, "break;" from the
        // while() loop to immediately process the MPU data
        // .
        // .
        // .
    }

    // reset interrupt flag and get INT_STATUS byte
    mpuInterrupt = false;
    mpuIntStatus = mpu.getIntStatus();

    // get current FIFO count
    fifoCount = mpu.getFIFOCount();

    // check for overflow (this should never happen unless our code is too inefficient)
    if ((mpuIntStatus & 0x10) || fifoCount == 1024) {
        // reset so we can continue cleanly
        mpu.resetFIFO();
        Serial.println(F("FIFO overflow!"));

    // otherwise, check for DMP data ready interrupt (this should happen frequently)
    } else if (mpuIntStatus & 0x02) {
        // wait for correct available data length, should be a VERY short wait
        while (fifoCount < packetSize) fifoCount = mpu.getFIFOCount();

        // read a packet from FIFO
        mpu.getFIFOBytes(fifoBuffer, packetSize);
        
        // track FIFO count here in case there is > 1 packet available
        // (this lets us immediately read more without waiting for an interrupt)
        fifoCount -= packetSize;

        #ifdef OUTPUT_READABLE_YAWPITCHROLL
            // display Euler angles in degrees
            mpu.dmpGetQuaternion(&q, fifoBuffer);
            mpu.dmpGetGravity(&gravity, &q);
            mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
            Serial.print("ypr\t");
            Serial.print(ypr[0] * 180/M_PI);
            Serial.print("\t");
            Serial.print(ypr[1] * 180/M_PI);
            myservoY.write(int(ypr[1] * -180/M_PI)+90);   // Rotation around Y
            Serial.print("\t");
            Serial.println(ypr[2] * 180/M_PI);
            myservoX.write(int(ypr[2] * 180/M_PI)+90);   // Rotation around X
        #endif


        // blink LED to indicate activity
        blinkState = !blinkState;
        digitalWrite(LED_PIN, blinkState);
    }
    
}











GY521 Arduino connections
--------------------------

  • VCC 3.3v or 5v depending on your GY-521
  • GND Ground
  • SCL A5
  • SDA A4
  • INT D2
  • Servo X D9
  • Servo Y D10
I2C and MPU-6050 libraries should be downloaded and placed according to directions given in the site below: http://www.i2cdevlib.com/devices/mpu6050



2014-06-22

Anguilla anguilla



Location:Mavi pide Marmaris,Hisarönü Köyü, Saklı Çay. Muğla
https://en.wikipedia.org/wiki/European_eel Anguilla anguilla
Music: "NirvanaVEVO" (by Chris Zabriskie)

2014-06-12

Arduino + MPU-6050 (Gyroscope + Acelerometer) - GY-521 + 2 Servo motors (Simple Code)

As a novice I am trying to put thing together. I am happy that I just made it work.

Arduino Uno as processor
GY-521 / MPU-6050 as accelerometer and Gyroscope.
Breadboard
2 9G Servos Bracket Sensor Mount Pan / Tilt Kit for Gyro - Translucent Blue http://www.dx.com/p/214081

http://playground.arduino.cc/Main/MPU-6050 has starting info on MPU-6050

I used two libraries from I2CDevLib: I2Cdev.h and MPU6050.h
https://github.com/jrowberg/i2cdevlib/

Wire and Servo libraries are already included with Arduino

http://playground.arduino.cc/Learning/I2C
http://www.arduino.cc/en/Reference/Wire
http://www.arduino.cc/en/Reference/Servo

MPU-6050 chip communicates with Arduino using I2C or (read as I square C) communication protocol. I2C bus one of the most common method of communication between varies microcontrollers, sensors etc. All I2C communication is handled by Arduino wire library.

Servo library is needed to control the servo motors.



The code below only uses values from accelerometer. The axis paralel to gravity will have additional 1g force. But shakings from hand will also effect accelerometer. You can see the effect as a shaky servo. I will try to correct it in next version. I am trying to be patient when looking for ways to fix it.
//MPU 6050 2 axis Servo kontrol 

#include <Servo.h>
#include <Wire.h>
#include <I2Cdev.h>
#include <MPU6050.h>

MPU6050 mpu;

int16_t ax, ay, az;
int16_t gx, gy, gz;

Servo myservoY;
Servo myservoX;

int valY;
int prevValY;

int valX;
int prevValX;

void setup() 
{
  Wire.begin();
  Serial.begin(38400);
  Serial.println("Initialize MPU");
  mpu.initialize();
  Serial.println(mpu.testConnection() ? "Connected" : "Connection failed");
  myservoY.attach(9);
  myservoX.attach(10);
}
void loop() 
{
  mpu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
  valY = map(ay, -17000, 17000, 0, 179);
  valX = map(ax, -17000, 17000, 0, 179);
  if (valY != prevValY)
  {
    myservoY.write(valY);
    prevValY = valY;
  }

  if (valX != prevValX)
  {
    myservoX.write(valX);
    prevValX = valX;
  }
  delay(50);
}


The connection scheme is
  • Arduino’s +5V to Vcc of MPU6050
  • Arduino’s GND to GND of MPU6050
  • Arduino’s SCL (AN5 in UNO board) to SCL of MPU6050
  • Arduino’s SDA (AN4 in UNO board) to SCK of MPU6050
  • Arduino’s digital pin 2 (INT0) to INT of MPU6050
I improved the design a month later:
Improvements: 
  • Faster time response
  • Fewer unwanted vibrations.
  • No change needed in cable connetctions


2014-04-10

Arduino nano servo controller for GoPro



Do it yourself Arduino nano servo motor controller for GoPro Hero3
Music: Dexter Britai After The Week Ive Had

I should make it again with a steadier tripod. But this one just works fine and gives an idea.

Link for Code: (Official example)
http://arduino.cc/en/Tutorial/Sweep
http://arduino.cc/en/reference/servo



// Sweep
// by BARRAGAN <http://barraganstudio.com> 
// This example code is in the public domain.


#include <Servo.h> 
 
Servo myservo;  // create servo object to control a servo 
                // a maximum of eight servo objects can be created 
 
int pos = 0;    // variable to store the servo position 
 
void setup() 
{ 
  myservo.attach(9);  // attaches the servo on pin 9 to the servo object 
} 
 
 
void loop() 
{ 
  for(pos = 0; pos < 180; pos += 1)  // goes from 0 degrees to 180 degrees 
  {                                  // in steps of 1 degree 
    myservo.write(pos);              // tell servo to go to position in variable 'pos' 
    delay(15);                       // waits 15ms for the servo to reach the position 
  } 
  for(pos = 180; pos>=1; pos-=1)     // goes from 180 degrees to 0 degrees 
  {                                
    myservo.write(pos);              // tell servo to go to position in variable 'pos' 
    delay(15);                       // waits 15ms for the servo to reach the position 
  } 
} 






2014-01-30

Potansiyometre ile servo motor kontrolu




/*
Controlling a servo position using a potentiometer (variable resistor) 
by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> 
Servo motor'un konumunu potansiyometre ile kontrol eder. 
http://arduino.cc/en/Tutorial/Knob
Çeviri: Nevit Dilmen
*/

#include <Servo.h> //Servo kütüphanesini al
 
Servo BenimServom;  // Bir servo nesnesi yarat 
 
int potansPini = 0;  // Potansiyometre'nin bağlandığı analog pin
int deger;    // Analog pin'den okunan değer 
 
void setup() 
{ 
  BenimServom.attach(9);  // servo nesnesini pin 9'a bağla 
} 
 
void loop() 
{ 
  deger = analogRead(potansPini);       // Okunan potansiyometre değeri(0 - 1023) arası
  deger = map(deger, 0, 1023, 0, 179);  // Okunan değer'i servo açı aralığına (genelde 0 - 180 arası) getir
  BenimServom.write(deger);             // Servo'yu tanımlanan açı değerine gönder. 
  delay(15);                            // kısa bekleme

2014-01-28

Arduino ile Basit Servo

/*
 Sweep / Tarama 
 by BARRAGAN <http://barraganstudio.com> 
 This example code is in the public domain.
 Kaynak: http://arduino.cc/en/Tutorial/Sweep
 Servo motorunuzu basitçe denemeye yarayan,
 Kendinize güveninizi tazeleyen program.
 0-180 derece arasında sürekli hareket eder.
 
 Bağlantılar: 
 
 Servo kablo renkleri farklı modellerde birbirinden farklı olabilir. 

-  Kırmızı + uç
-  Siyah veya kahverengi > Toprak
-  Beyaz, sarı veya turuncu bilgi kablosudur. 
 
 Servo motor Arduino'dan ayrı bir güç kaynağına bağlanmalıdır. 
 Servo'nuzu Arduino'dan beslemeyin. Pil veya Adaptör kullanın. 
 Genelde +5V ile çalışır ancak servo gerilimi için satın aldığınız 
 servo'nun Datasheet'ine bakmayı unutmayın. Ör benimki 
 
 Arduino toprak ve Servo toprak birbirine bağlanmalıdır. 
 
 Servo'nun Data kablosunu Arduinoya bağlarken, küçük kazalara
 karşı Arduino'yu korumak amacı ile araya 220 Ohm küçük bir direnç bağlayın. 
 
 Servo 
 
*/


#include <Servo.h> // Servo motorlar için geliştirilmiş Arduino kütüphanesini yükler. 
 
Servo BenimServom;  // Benim Servom adında bir nesne başlatır.  
                    // Bu şekilde en fazla sekiz servo başlatılabilir.  
 
int Aci = 0;        // Servo açı'sını saklayan tam sayı değişkenini başlat 
 
void setup() 
{ 
  BenimServom.attach(9);  // Pin 9'a Servo nesnesini bağla (Servo bilgi kablosu)
} 
 
void loop() 
{ 
  for(Aci = 0; Aci < 180; Aci += 1)  // Aci değişkenini 0 dereceden 180 dereceye kadar birer derece artırır 
  {                                  
    BenimServom.write(Aci);          // Benim Servo'ya  Aci değişkeninin açısına gitmesini söyle.  
    delay(15);                       // 15 milisaniye bekle 
  } 
  for(Aci = 180; Aci>=1; Aci-=1)     // Aci değişkenini 180 dereceden 0 dereceye kadar birer derece azalt 
  {                                
    BenimServom.write(Aci);          // Benim Servo'ya  Aci değişkeninin açısına gitmesini söyle.  
    delay(15);                       // 15 milisaniye bekle 
  } 
}