0
How can we use Python in embedded coding?
is there any special IDE and compiler?
2 Answers
+ 6
If the chip youre working with allows it, you can. These instructions should come with the chip packaging or the manufacturer's website.
However, its illogical to do so since Python has to be interpreted, which wastes resources; reason why its better to use compiled low level languages for embedded systems.
You can mimick a Python embedded system with the raspberry pi (computer with accessible GPIO) and have your Python script run when the rPi boots
+ 1
use pycharm.