Hello!
I am having trouble getting the correct values from my MSP432 to my DAC. So basically my project setup is as follows:
Transmitting:
-Microphone connected to the A15 channel of my MSP432
-Xbee connected to the UART pins 3.2, 3.3
CODE Tx:
const int MICAN = A15; // MIC in
void setup() {
Serial1.begin(9600); // baud rate setting
}
void loop() {
Serial1.print(analogRead(MICAN));// send mic value over serial
delay(100); // for testing
}
///////////////////////////////////////////////////////////////////////
Receiving:
-MSP432 connected to my other Xbee d