Hello,
I am receiving the following message when try to run my program:
" Binary sketch size: 1978 bytes (of a 14336 byte maximum)"
The board and the serial com are correct. I just want to perform a test with my ardduino Diecimila using the following code:
/*
AnalogReadSerial
Reads an analog input on pin 0, prints the result to the serial monitor
This example code is in the public domain.
*/
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(A5);
Serial.println(sensorValue);
}
My expactation is to receive the analog value from the analog ping. What I am missing? My computer has Windows 7 / 64.
Regards;