Go to Post Profesional Gracism - n. the blessing said before Robotics competitions begin. - Cynette [more]
Home
Go Back   Chief Delphi > Technical > Programming > Java
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Spotlight this post!  
Unread 11-02-2012, 20:06
LukeS LukeS is offline
4272 mentor, 1024 alumnus
AKA: Luke Shumaker
FRC #4272
Team Role: Mentor
 
Join Date: Mar 2009
Rookie Year: 2009
Location: Indianapolis, IN
Posts: 60
LukeS is an unknown quantity at this point
Trouble with the AXDL345_I2C accelerometer.

I apologize in advance for creating another accelerometer thread, but none of the others were able to help me, and I didn't want to hijack l0stboy's, in case we're having different problems.

My problem is the one most people are having: I always read 0.0 on all axis.

I have the module connected to the I2C port on the sidecar, yes I2C closest to the NXT connector, not the digital outs next to it.

We are using the new flat ribbon cable to talk to the DSC. One of the connectors was flipped, but we fixed it, per the instructions on the KoP site. It has been verified working by using two PWM servos, and two digital encoders.

I have verified that the pins are connected one-to-one from the accelerometer to the sidecar. I have tested the cable using an ohm-meter, and have while it is connected measured 5.1V on the "5V" pin, and 4.7V on the "SDA" and "SCL". I do not have easy access to an oscilloscope, but can get one if truly necessary.

Looking at the spec sheet for the ADXL345, and the WPILibJ source code, we noticed that the read bit is not set during I2C.read(), so I tried replacing
Code:
registerAddressArray[0] = (byte) registerAddress;
with
Code:
registerAddressArray[0] = (byte) (registerAddress | 0x01);
To clarify, why I did this is because the spec sheet (from Analog Devices) says
Quote:
the 7-bit I2C address for the device is 0x1D, followed by the R/W bit. This translates to 0x3A for a write and 0x3B for a read.
However, this did not fix the problem either.

We have also tried replacing the accelerometer, but it didn't work either.

Here is the code I am running to test the accelerometer:
Code:
package edu.wpi.first.wpilibj.templates;

import edu.wpi.first.wpilibj.ADXL345_I2C;
import edu.wpi.first.wpilibj.IterativeRobot;

public class RobotTemplate extends IterativeRobot {

	ADXL345_I2C accel;

	public void robotInit() {
		accel = new ADXL345_I2C(1, ADXL345_I2C.DataFormat_Range.k2G);
	}

	public void teleopPeriodic() {
		ADXL345_I2C.AllAxes vals = accel.getAccelerations();
		System.out.println(
				" X: " + vals.XAxis+
				" Y: " + vals.YAxis+
				" Z: " + vals.ZAxis);
	}
}
Any help is greatly appreciated.
Reply With Quote
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 18:00.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi