//Ardunio code for Part 01 //First we will define the values to be sent //Note: The java code to go with this example reads- //-in integers so values will have to be sent as integers int valueA = 21; int valueB = 534; void setup() { Serial.begin(115200); Serial.println("Start"); } void loop() { //We send the value coupled with an identifier character //that both marks the end of the value and what the value is. Serial.print(valueA); Serial.print("A"); Serial.print(valueB); Serial.print("B"); //A delay to slow the program down to human pace. delay(500); }