arduino / reference-en

Editable source for the Arduino Reference
https://www.arduino.cc/reference/en/
Other
165 stars 732 forks source link

Document the ARDUINO_* constants #956

Open alranel opened 11 months ago

alranel commented 11 months ago

The official Arduino cores define a set of constants that can be used to write more portable sketches and code by identifying the architecture and board being used.

We have architecture-specific constants such as:

As well as board-specific constants such as:

We should add a page to the language reference documenting all the available constants.

alranel commented 10 months ago

Bonus: add a link to a dedicated page on best practices for writing portable code, showing how to use such constants for common board-specific tasks such as pin numbers or Wire object to use etc.