Advertisement
Guest User

Gyro.cpp2

a guest
Oct 3rd, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1.  
  2. #include "Gyro.h"
  3. #include <Wire/HardWire.h>
  4.  
  5. HardWire portInLib(2);
  6.  
  7. Gyro::Gyro(){
  8.  
  9. };
  10.  
  11.  
  12.  
  13. void Gyro::readValues(){
  14.  
  15.  
  16.   char gyroValues[8];
  17.  
  18.  
  19.   portInLib.beginTransmission(GYRO_ADDR);
  20.   portInLib.send(0x1B);
  21.   portInLib.endTransmission();
  22.   portInLib.requestFrom(GYRO_ADDR, 8);
  23.  
  24.  
  25.  
  26.   for(int i = 0; i < 8; i++){
  27.     gyroValues[i] = portInLib.receive();
  28.   }
  29.  
  30.   for(int i = 0; i < 8; i++){
  31.     SerialUSB.print(gyroValues[i], DEC);
  32.     SerialUSB.print("  ");
  33.   }
  34.  
  35.   SerialUSB.println();
  36.    
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement