Hello All,
I'm tasked with talking to a device with the 5529 Launchpad. The device address does not matter here. I'm using a protocol analyzer to see what's coming out of the pins and all I get is the address. I'm using the potentiometer wire example in Energia 11. Pull ups are enabled in the debugging tool. I'm using 3.0 and 3.1 as SDA/SCL.
- model of LaunchPad used and revision number
- 5529 LP. Rev 1.4
- model of the MCU used
- 5529
- model of BoosterPack used or model of the sensor or actuator or screen
- I2C with address 0x2C
- name and version of the IDE used
- Energia 11, latest
- OS the IDE is running on
- Windows 7, 64 bit
- whenever possible, minimal code to replicate the issue
- Example code under Energia->Examples>Wire
I'm doing something wrong as I don't see others with the issue.
// I2C Digital Potentiometer
// by Nicholas Zambetti <http://www.zambetti.com>
// and Shawn Bonkowski <http://people.interaction-ivrea.it/s.bonkowski/>
// Demonstrates use of the Wire library
// Controls AD5171 digital potentiometer via I2C/TWI
// Created 31 March 2006
// This example code is in the public domain.
// This example code is in the public domain.
#include <Wire.h>
void setup()
{
Wire.begin(); // join i2c bus (address optional for master)
}
byte val = 0;
void loop()
{
Wire.beginTransmission(44); // transmit to device #44 (0x2c)
// device address is specified in datasheet
Wire.write(byte(0x00)); // sends instruction byte
Wire.write(val); // sends potentiometer value byte
Wire.endTransmission(); // stop transmitting
val++; // increment value
if(val == 64) // if reached 64th position (max)
{
val = 0; // start over from lowest value
}
delay(500);
}