Search the Community
Showing results for tags 'msp430f5529 launchpad'.
-
Hello, How to I change I2c speed (to highest possible) on MSP430f5529 launchpad with energia? I tried Wire.setSpeed(); Wire.setClock(400000), which work for arduino, but energia says 'class TwoWire' has no member named 'setSpeed'. Could you please advise how to solve this issue/ Thank you, Alex
-
Hello, I'm having troubles controling FDC1004 with MSP430F5529LaunchPad. I found the sample codes on this forum and tried using it (connecting SDA to P3.0 and SCL to P3.1. via 10k pull up resistors to 3.3V). It compiles and upload, but doesn't actually work- serial monitor is just blank. could you please help to fix this?) Thank you, Alex
-
hey please help me i am unable to get data.getting nothing from Rx.i am using MSP430F5529 at 16MHz.I can send data but unable to reci. please help me...... Here is the code: /* The circuit: * RX is digital pin P3.4 (connect to TX of other device) * TX is digital pin P3.3 (connect to RX of other device) */ #include <SoftwareSerial.h> SoftwareSerial mySerial(P3_4, P3_3); // RX, TX int incomingByte = 0; void setup() { // set the data rate for the SoftwareSerial port mySerial.begin(9600); } void loop() // run over and over { delay(1); if (mySerial.available()>0 )