[vc_row][vc_column][vc_column_text]The Arduino language (based on Wiring) is implemented in C/C++, and therefore has some differences from the Processing language, which is based on Java.[/vc_column_text][vc_tour][vc_tab title=”Arrays” tab_id=”1395819304-1-71″][vc_column_text]
Arduino | Processing |
int bar[8]; bar[0] = 1; |
int[] bar = new int[8]; bar[0] = 1; |
int foo[] = { 0, 1, 2 }; | int foo[] = { 0, 1, 2 }; or int[] foo = { 0, 1, 2 }; |
[/vc_column_text][/vc_tab][vc_tab title=”Loops” tab_id=”1395819304-2-99″][vc_column_text]
Arduino | Processing |
int i; for (i = 0; i < 5; i++) { … } |
for (int i = 0; i < 5; i++) { … } |
[/vc_column_text][/vc_tab][vc_tab title=”Printing” tab_id=”1395819398384-2-5″][vc_column_text]
Arduino | Processing |
Serial.println(“hello world”); | println(“hello world”); |
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; println(“i = ” + i); |
[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row]
Leave a Reply
You must be logged in to post a comment.