-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restart arduino #19
Comments
I am using arduino due anyway |
It seems the default value when app running for base.DtrEnable is set to false. I add base.DtrEnable = true; before base.Open(), and everytime app is starting, the arduino will also restarted. I propose you also add DtrEnable as public property in EnhancedSerialConnection. |
var connection = new EnhancedSerialConnection("COM3", SerialBaudRate.Bps_57600);
connection.DtrEnable = true;
var session = new ArduinoSession(connection); |
It said 'DtrEnable' is not a member of ISerialConnection. anyway...Merry Christmas & Happy New Year 2018....! |
When app start running, the app cannot communicate with arduino, cannot send message neither receive any message. But when the app still running and arduino is reset manually, the app start to receiving message.
In arduino IDE, when we start serial monitor, this will restart arduino. But this not happen in this case. How do I restart arduino everytime the app is running?
The text was updated successfully, but these errors were encountered: