Hi I was wondering why uploading takes forever on Arduino Lilypad USB
here is my Code
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.write(45);
Serial.print(45);
delay(1000);
Serial.write(1);
Serial.print(1);
delay(1000);
}
Sketch uses 4,392 bytes (15%) of program storage space. Maximum is 28,672 bytes.
Global variables use 159 bytes (6%) of dynamic memory, leaving 2,401 bytes for local variables. Maximum is 2,560 bytes.