Doubt in commanding ssc 32

Respected Members

I am working on aplication in which i have to write this_serialPort.Write("#3 P2345 /r"); to make my hardware move it is basically represent text as a series of unicode character

but i am recieving data from some other applcation my data is this “#3 P2345 /r” , then also the results are not coming , i am using this command -serialPort.write(data);data is local variable string data
it is not working , i have put console.writeline(data);

which only show command required for output which is “#3 P2345 /r” , now wht should i do. plz help.

i will be very thankfull to you

Try adding \n to your output… like:

_serialPort.Write("#3 P2345\n\r"); 

Kurt