Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #102236 > unrolled thread
| Started by | Joel Cotto <joelcotto23@gmail.com> |
|---|---|
| First post | 2016-01-29 23:35 +0800 |
| Last post | 2016-01-29 23:35 +0800 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
Python 3.5.1 Joel Cotto <joelcotto23@gmail.com> - 2016-01-29 23:35 +0800
| From | Joel Cotto <joelcotto23@gmail.com> |
|---|---|
| Date | 2016-01-29 23:35 +0800 |
| Subject | Python 3.5.1 |
| Message-ID | <mailman.91.1454082040.2338.python-list@python.org> |
Hi,
I'm using the new release of python ver 3.5.1 but i got problem using its
code to communicate w/ serial port. I'm receiving port error. Hope you can
guide me if there are change made in the command. Thanks and Good Day
import serial ser = 0 def init_serial(): COMNUM = 1 global ser ser =
serial.Serial() ser.baudrate = 9600 ser.port = COMNUM - 1 ser.timeout = 10
ser.isOpen() if ser.isOpen(): print ('Open: ' + ser.portstr) init_serial()
temp = input('Enter SCL command, hit enter:\r\n') ser.write(temp) while 1:
bytes = ser.readline() print ('You sent: ' + bytes)
Back to top | Article view | comp.lang.python
csiph-web