Reference Language | Libraries | Comparison | Changes
The Energia language (based on Arduino and Wiring) is implemented in C/C++, and therefore has some differences from the Processing language, which is based on Java.
Energia | Arduino | Processing |
int bar[8]; bar[0] = 1; |
int bar[8]; bar[0] = 1; |
int[] bar = new int[8]; bar[0] = 1; |
int foo[] = { 0, 1, 2 }; | int foo[] = { 0, 1, 2 }; | int foo[] = { 0, 1, 2 }; or int[] foo = { 0, 1, 2 }; |
Energia | Arduino | Processing |
int i; for (i = 0; i < 5; i++) { ... } |
int i; for (i = 0; i < 5; i++) { ... } |
for (int i = 0; i < 5; i++) { ... } |
Energia | Arduino | Processing |
Serial.println("hello world"); | Serial.println("hello world"); | println("hello world"); |
int i = 5; Serial.println(i); |
int i = 5; Serial.println(i); |
int i = 5; println(i); |
int i = 5; Serial.print("i = "); Serial.print(i); Serial.println(); |
int i = 5; Serial.print("i = "); Serial.print(i); Serial.println(); |
int i = 5; println("i = " + i); |
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Energia Reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Energia reference is based on Arduino reference. Code samples in the reference are released into the public domain.