Arduino provides syntax highlighting and autocompletion for the Arduino programming language within the Nova IDE.
Arduino currently supports the following features:
- Code Highlighting
- Collections listed in sidebar:
- Functions
- Structs
- ~~ Auto Completion~~ (Please note that support for auto completion is currently very limited)
Function and struct collections are listed in the sidebar provided that they follow standard lexical grammar...
void myFunction() {
doSomething();
}
void myOtherFunction()
{
doSomethingElse();
}
struct myStruct {
int myInt = 1;
}
struct myOtherStruct
{
float myfloat = 1.1;
}
For support / contributions / discussions please visit the Github repository or join us on Discus