- Sat Jan 16, 2010 2:33 pm
#90854
If this is my code:
Serial.println(XXXXXXX);
statement?
Brush me up, plz? It's been a while.
Code: Select all
How do I concatenate the "A/D Value: " and integer datatype into oneint sensorPin = 0;
int sensorValue = 5;
void setup(){
Serial.begin(9600);
Serial.println("Program is go.");
}
void loop(){
// read the analog pin
Serial.print("A/D value: ");
Serial.print(sensorValue);
Serial.print("\n");
delay(325);
}
Serial.println(XXXXXXX);
statement?
Brush me up, plz? It's been a while.
