command data
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi In a manual from a beamer i found following command data to switch the beamer to Power On. 02H 00H 00H 00H 00H 02H What does this line means? Are this Bios Interupts? I try to get this Data to the Beamer using System.Io.Ports. But i don't know how. As a string? As a Byte? System.IO.Ports.SerialPort sPort = new SerialPort("COM1", 38400, Parity.None, 8, StopBits.One); sPort.Open(); sPort.Write( --> What? string? byte[]? char[]? <--) sPort.Close(); Best Regards