Hi all
Sorry if this is a newbie/stupid question, but I am totally new to embedded/hardware-programmering.
I just got a Fez Panda II and a WLS107B4B, ready to dive into .NET micro framework.
However, with no experience and no documentation of the WLS107B4B, I have absolutely no idea how to make it all work.
I can send something and I can receive something, sadly what I receive is not what I (think) I sent.
Currently I have:
Transmitter = new SerialPort(“COM3”, 2400);
Transmitter.DataBits = 8;
Transmitter.Parity = Parity.None;
Transmitter.StopBits = StopBits.One;
Receiver = new SerialPort("COM4", 2400);
Receiver.DataBits = 8;
Receiver.Parity = Parity.None;
Receiver.StopBits = StopBits.One;
Is this the right way of using the transmitter and receiver? Via SerialPort communication? and what do I need to send? Is there some packet-format or message size or how do this work?
Any help is greatly appreciated
Best regards
dblank