i want the basic project of arduino with full programmming
i want the basic project of arduino with full programmming
This is the easiest project possible. Arduino - Blink
Doh, I had boolean running = false; on the wrong line. Fixed, formatted the code and included the compile size.
boolean running = false;
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13,running=!running);
delay(1000);
}Binary sketch size: 1070 bytes (of a 32256 byte maximum, 3.32 percent).
And tbh we can do even better than that :-) (/me ponders how low can it go?)
Any other takers? we can go deeper :-)