Hi there,
Sorry about that, total noob here.
1. I am using the MSP430g2553
2. I have the RX(MSP430) to the TX of the HM-11 and vice versa
3. My current Energia version is 0101E0016
Here is a sample of my code
#include <SoftwareSerial.h>
SoftwareSerial mySerial(P1_1, P1_2); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
Serial.println("Hello world!");
// set the data rate for the SoftwareSerial port
mySerial.begin