Serial Port Configuration
| NAME | COM9 |
|---|---|
| BAUDE RATE | 112500 |
| DATA BIT | 8 |
| PARITY | NONE |
| HANDSHAKE | OFF |
| MODE | FREE |
Example C# configuration
SerialPort serial = new SerialPort(“COM9”, 115200, Parity.None);
Example Visual Basic# configuration
Dim serial As SerialPort = new SerialPort(“COM9”, 115200, Parity.None);
Updated about 2 months ago
What’s Next