Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
i wrote program in C# winform. i want to when operation is successful, LED will be turn on . i know that i must use this code:

serialport1.open();
serialport1.EnableDtr=true;
serialport1.close();

. but before program is running, LED was turned on. i set ReceiveBuffer to low , in Device Maneger.but didn't work and led is turn on.
Posted
Comments
lukeer 3-Dec-12 8:13am    
How about setting serialport1.DtrEnable = false;? That should turn the LED off.
Sergey Alexandrovich Kryukov 3-Dec-12 14:28pm    
It also depends on what pin triggers LED on/off. :-) Could be just data...
--SA
lukeer 4-Dec-12 1:22am    
You're absolutly right, I prematurely assumed that it would be attached to the DTR line.
Sergey Alexandrovich Kryukov 4-Dec-12 11:15am    
So, I don't see a big problem. From what I know, many used COM and LPT ports for "poor-man little automation"...
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900