phil wrote:
> I use PySerial in a 16 line data collection system
> with LOTS of threads, and yes am frustrated by read().
> This sounds excellent, keep us updated.
>
> BTW, haven't done any event driven Python except Tkinter.
> Would this a class library which would let you
> define an event and
I use PySerial in a 16 line data collection system
with LOTS of threads, and yes am frustrated by read().
This sounds excellent, keep us updated.
BTW, haven't done any event driven Python except Tkinter.
Would this a class library which would let you
define an event and a handler?
Do you have a
Neil Benn wrote:
> PySerial doesn;t have any kind of event firing to notify you when data
> is available. The way I get round this is to have a loop polling (in a
> seperate thread) to see if any data is available (it's a method on the
> interface), then read all the data in and fire this off t