Part Number: MSP-EXP430FR5994
Other Parts Discussed in Thread: MSP430G2231
Tool/software: Code Composer Studio
Hi
I am developing a sensor project for IICDC 2017 hence i need to display this sensor data acquired from the MSP-430FR5994 to my PC ,to check the functioning of my sensors is correct or not?
So i dont know how to display the sensor data to my pc in UBUNTU 17.10
let's take my code as:
void setup()
{
Serial.begin(9600); // msp430g2231 must use 4800
}
void loop()
{
int sensorValue = analogRead(P1_3);
int voltage = sensorValue * (5.0 / 1023.0);
Serial.println(voltage);
}
which is an energiaproject opened in ccsv7 in ubuntu
