Good morning,
I'm using the latest Energia 18 build with Windows 10.
I'm plugged into an MSP430 Launchpad with an MSP430G2553 chip on the board.
The following code hangs on the Wire.endTransmission() statement..
Can somebody throw me a bone here and tell me how to fix this?
int findAddress(int fromAddress, int toAddress)
{
int address = 0;
for (int a = fromAddress; a < toAddress; a++)
{
Serial.print(a);
Serial.print(" - beginTransmission.. ");
Wire.beginTransmission(a);
// delay(3);
// Wire.write(1);
Serial.print(" e