int myInt = 32767; void setup() { // put your setup code here, to run once: Serial.begin(9600); } void loop() { myInt = 32767; // delay(1000); Serial.print("The value of variable myInt is "); Serial.println(myInt); //delay(500); Serial.println("Now, we'll add 1 to myInt"); myInt = myInt + 1; // delay(500); Serial.print("The new value of variable myInt is "); Serial.println(myInt); // delay(1000); // delay(200); // Serial.println(50, OCT); // delay(200); // put your main code here, to run repeatedly: }