An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Hi just thought i would share that i just found the solution to this problem what was happening is the information was being sent to fast and the firmware on the device wasn't reading it in time so i ended up splitting the 111047 into separate parts and had spaced out by about half a second. Port.Write(new byte[] { 13 }, 0, 1); Thread.Sleep(250); Port.Write(new byte[] { 13 }, 0, 1); Thread.Sleep(500); Port.Write("1"); Thread.Sleep(500); Port.Write("1"); Thread.Sleep(500); Port.Write("1"); Thread.Sleep(500); Port.Write("0"); Thread.Sleep(500); Port.Write("4"); Thread.Sleep(500); Port.Write("7"); Thread.Sleep(500); Port.Write(new byte[] { 13 }, 0, 1);