![]() |
Function to Continuasly monitor serial port and control other functions - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Function to Continuasly monitor serial port and control other functions (/thread-8687.html) Pages:
1
2
|
RE: Function to Continuasly monitor serial port and control other functions - Larz60+ - Mar-04-2018 threading will keep the process separate from the main process, and allow other tasks to operate. It will not stop polling, that has to be done with events (AKA Interrupt). |