vote up 0 vote down star

Alright so I am positive my Arduino circuit is correct and the code for it. I know this because when I use the serial monitor built into Arduino IDE and send 'H' an LED lights up, when I send 'L' that LED turns off.

Now I made a python program

import serial
ser = serial.Serial("COM4",9600)
ser.write("H")

When I run the code the LED blinks on for a second then goes back off. However when I do each of these lines seperatly in the shell it works just like it is supposed to.

Any ideas?

flag
could it be related to the Serial object being garbage collected? – Autoplectic Oct 24 at 18:09

1 Answer

vote up 1 vote down
  • Are the baudrate / parity / stopbits settings correct?
  • What happens if you place a long sleep after the write?
link|flag
+1, I'm almost certain a sleep will work :) – Nadia Alramli Oct 24 at 14:40
The settings would have to be right or it wouldn't work in the shell, right? Same thing happens when I place a sleep. – dotlol Oct 24 at 14:40
it's hard to say without more information, then. Try to install a virtual COM port loopback (like com0com) and verify that exactly the same bytes get sent in both cases with the different behavior – Eli Bendersky Oct 24 at 15:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.