04-16-2021 05:43 AM
04-16-2021 07:22 AM
You don't have parallel while loops. You have a wire that leaves the top loop and enters the bottom loop which thus makes them sequential.
You've made a basic data flow violation.
04-16-2021 09:20 AM - edited 04-16-2021 09:20 AM
On top of what ravensfan said, I don't think what you are attempting will work as an Arduino is a single core microcontroller and is not running any type of multitasking operating system.
I don't think your paralleled loops will run at all even if you fixed the dependency.
But I don't know for sure, maybe LINX can do some tricks that can make something like this work
04-20-2021 01:17 PM
Thank you for your comments