Hello,
I would like to know if I want to build an application in Python to control Arduino board which has seperated coding using C, can I do that? If I can, what library can I use to communicate between the two codes, or is it better to just do everything in python and use library to communicate it with the board?
The example:
When I click a button in the app which was built in Python, it will send a variable to arduino which was built in C and the arduino will check which condition does the received variable was met and function according to that condition.
Thank you.