247
edits
No edit summary |
No edit summary |
||
Line 47: | Line 47: | ||
01. Initialize five sensors, receive data values from Arduino, and send them to Max. | 01. Initialize five sensors, receive data values from Arduino, and send them to Max. | ||
[[ | //for(int i = 0; i < 6; i++){ | ||
val[i] = analogRead(i); | |||
Serial.print(val[i]); | |||
Serial.print(" "); | |||
} | |||
Serial.println(); | |||
delay(10); | |||
} | |||
edits