New Topic
Register
Login
Products
Documentation
Forum
Blog
anonymous
Topics
Replies
Replies (2)
Topic:
Serial Read Arduino Leonardo from C#
You Reply:
Hello everyone,
While researching, I came across this forum post:
https://www.lattepanda.com/topic-p6750.html
And in the comment, GTC recommanded to set DTR and RTS to "true" for Serial Communication with Arduino Leonardo.
So i add this too lane in my C# code :
Code:
Select all
serialPort1.DtrEnable = true; // <<< For Leonardo serialPort1.RtsEnable = true; // <<< For Leonardo And now all is working fine.
Big thanks to GTC and Kellman616 for the post.
Enjoy playing with LattePanda !
Topic:
Serial Read Arduino Leonardo from C#
You Reply:
UPDATE
I connected my Arduino Uno to a USB port on my LattePanda board and uploaded the code to it.
This time I have the echo of the characters that I send from my C# application.
But I still can't perform this action on the LattePanda's Arduino.
Thank again for your help.
HEPIA_Matt.