| 1. |
What Is The Arduino Language? |
|
Answer» There is no custom Arduino language, Arduino is the name of the project here: Arduino.cc. The compiler used by the IDE is called avr-gcc and it is a C++ compiler. The languages listed below are compatible with avr-gcc and can be used to program your SKETCHES in the IDE.
The IDE has ACCESS to a large API for USE with your Arduino development boards. The source code is freely available for you to extract and modify as you wish. The API also sits on top of a robust and INDUSTRY standard framework for manipulating the CPU directly. So when you need more performance from your device you can leave parts of the Arduino API out directly CONTROL the hardware. An example is port manipulation over Arduinos digitalRead/Write functionality. There is no custom Arduino language, Arduino is the name of the project here: Arduino.cc. The compiler used by the IDE is called avr-gcc and it is a C++ compiler. The languages listed below are compatible with avr-gcc and can be used to program your sketches in the IDE. The IDE has access to a large API for use with your Arduino development boards. The source code is freely available for you to extract and modify as you wish. The API also sits on top of a robust and industry standard framework for manipulating the CPU directly. So when you need more performance from your device you can leave parts of the Arduino API out directly control the hardware. An example is port manipulation over Arduinos digitalRead/Write functionality. |
|