c# - Auto detecting Baud Rate of Arduino -
c# - Auto detecting Baud Rate of Arduino -
i'm trying observe baud rate of arduino mega2560 using c#. code below:
serialport sp=new serialport(); sp.baudrate = 115200;
baudrate specified constant this, automatically observe it.
for instance, if arduino code includes serial.begin(xxxx), programme should declare sp.baudrate = xxxx.
how can it?
c# arduino baud-rate
Comments
Post a Comment