I would like to exchange data via Xbee. I've set up a communication based on strings between the Arduino and a Matlab software. Unfortunately this kind of communication isn't enough robust and sometimes messages aren't delivered correctly. So I decided to move to the binary communication.
The problem:
I'm not able to send binary data from the Arduino to the computer.
Let's say we want to send the decimal value 17 which is 0x11 in hex if we receive 16 from Matlab.
[...]
SoftwareSerial xbee(pinRx, pinTx);
void setup()
{
Serial.begin(BaudRateSerial);
xbee.begin( BaudRateXbee );
}
[...]
void loop()
{
while(xbee.available())
{
getData = xbee.read();
Serial.println();
Serial.print("Received: ");
Serial.print(getData,HEX);
Serial.println();
if(getData == 16)
{
// First attempt
//uint8_t s = 17;
//xbee.write(s); -> Fail
// Second attempt
//xbee.write(0x11); -> Fail
// Third attempt
byte message[] = {0x11, 0x11};
xbee.write(message, sizeof(message));
}
}
}
In the third attempt I tried sending an array of bytes and noticed that the received values were different.
byte message[] = {0x11, 0x11};
xbee.write(message, sizeof(message));
The Matlab software sends data correctly. I used the fwrite function as follows fwrite(xbee,hex2dec('10'));
and the fread function to receive the ack which:
reads binary data from the device connected to the serial port object, obj, and returns the data
Matlab relevant code:
fwrite(xbee,hex2dec('10'));
disp('Ack Requested...')
ack = fread(xbee);
disp(ack);
if (ack == 17)
% communication established
end
I've also tried using XC-TU to monitor traffic on Serial port (blu values are sent from the PC, red ones are received from the Arduino) and as you can see red values are different and none of them is equivalent to 17! What am I missing?
String a = "1";
isbyte 31
. Make a debug, addSerial.println(getData,HEX);
and see what are you getting – Martynas Nov 10 '14 at 7:55xbee.write(message, sizeof(message));
this shows in MatLab as75
,70
??? Not sure but try to check baud rates or so. I just can't see what is wrong.. – Martynas Nov 10 '14 at 14:28