Has anyone successfully operated the uArm Swift Pro using C#? I have set up the typical serial connection but I am not getting a response from the device.
serialPort1.PortName = “COM72”;
serialPort1.BaudRate = 115200;
serialPort1.Parity = Parity.None;
serialPort1.DataBits = 8;
serialPort1.StopBits = StopBits.One;
serialPort1.Open();
I can open the uArm Pro using putty and the arduino console and immediately get a response back and an audible beep. I receive nothing after trying to open the port through a C# Form.
Could you explain what you did exactly?
I am very interesting to use C# method for control the robot.
Could you share an exemple of your program.cs?
Thank you.