Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #102236

Python 3.5.1

From Joel Cotto <joelcotto23@gmail.com>
Newsgroups comp.lang.python
Subject Python 3.5.1
Date 2016-01-29 23:35 +0800
Message-ID <mailman.91.1454082040.2338.python-list@python.org> (permalink)

Show all headers | View raw


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 comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Python 3.5.1 Joel Cotto <joelcotto23@gmail.com> - 2016-01-29 23:35 +0800

csiph-web