Joshua's Docs - Notes on Arduino and Other Microcontroller Platforms
Light

Support for Other Languages and Platforms

Aside from using Arduino / C++ code, you can also get other platforms to run on many different MCUs. For example:

  • Espruino - JavaScript interpreter on microcontrollers
  • MicroPython - Python
  • NodeMCU - Lua (Specifically for ESP boards, e.g. ESP32)
  • ... and more.

Arduino

Arduino Reminders and "Gotchas"

  • No "Standard Library" (e.g. std::.*)!!!
  • String concatenation
    • Using Arduino's String, you can concatenate using +, but the different units have to also be strings.
    • This means that this will work as shorthand (casting): String concatenated = (String)"Hello" + spaceVar + "World";
Markdown Source Last Updated:
Mon May 25 2020 14:09:58 GMT+0000 (Coordinated Universal Time)
Markdown Source Created:
Thu May 21 2020 23:30:34 GMT+0000 (Coordinated Universal Time)
© 2024 Joshua Tzucker, Built with Gatsby
Feedback