Posted on December 06, 2012 at 11:27Hi I use STBee. When I perform I2C in Arduino, I write such a code. void writeDevice(byte address, byte registerAddress, byte data){ Wire.beginTransmission(address); Wire.write(registerAddress); Wire....
Posted on December 03, 2012 at 10:23I am a beginner about the microcontoroller. I use STBee. I want to connect a STBee and a sensor(IMU 6DOF ITG3200/ADXL345). At first I want to let you display a value of the x-axis. Please teach a solution. &sharpi...
Posted on December 11, 2012 at 09:50I found the problem. There was a problem in the portion in writeDevice(). I2C_Send7bitAddress(I2C1,address,I2C_Direction_Transmitter); while(!I2C_CheckEvent(I2C1,I2C_EVENT_MASTER_TRANSMITTER_MODE_SELECTED)); T...
Posted on December 05, 2012 at 04:00I did not yet do debugging. I do it now. I have done the basic steps of blinking an LED and sending a string out of the serial port. In addition, I controlled a DC motor using PWM.
Posted on December 04, 2012 at 06:03Thank you for replying. I apologize for not providing you with enough explanation. I want to display the value of the acceleration of an x-axis on Tera Term. I tried it in various ways, but it was not able to be ...