Are there any libraries that can easily convert Python to C/C#/or C++? Ones where a person doesn't have to "calibrate" it, just, pip install library and then they can have their Python code in C,C#,or C++?
Change/convert Python code to C++ to use with Arduino IDE. Possible ?
To my knowledge there's nothing out there that can easily convert python to C++. Especially if you don't know python well enough to debug it when things inevitably go wrong. Were I in your shoes I would learn python well enough to read it (though maybe not well enough to write it) and rewrite that program in C. Of the 700 lines it looks like almost 400 of them are that block of keys so it's not that long a program.
Edit: might ask over on arduino about the python conversion.
Edit2: what are you trying to do with this code?
More on reddit.comWriting Python prototype code that's easier to convert to C++
how can i convert c to python?
You can't convert, but you can rewrite. Figure out what this code does and implement the same thing in Python yourself.
More on reddit.comVideos
Are there any libraries that can easily convert Python to C/C#/or C++? Ones where a person doesn't have to "calibrate" it, just, pip install library and then they can have their Python code in C,C#,or C++?