NETponents / octoduino

Arduino sketch that allows programming in multiple scripting languages from an SD card.
http://netponents.github.io/octoduino
GNU General Public License v2.0
2 stars 2 forks source link

Comment new code #150

Closed ARMmaster17 closed 9 years ago

ARMmaster17 commented 9 years ago

After the mess with PR #144, all the new code files need to be commented so the documentation engine can pick them up. Document each class and function like this:

/**
 * Displays "Hello world".
 */
static void printHW()
{
  Serial.println("Hello world!");
}