i want the basic project of arduino with full programmming
i want the basic project of arduino with full programmming
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13,!digitalRead(13));
delay(1000);
}compiles to a Binary sketch size: 1,234 bytes (of a 32,256 byte maximum)
void setup() {
DDRB = DDRB | B00100000; // set pin 13 to output
}
void loop() {
PORTB = PORTB ^ B00100000;
delay(1000);
}Compiles to a Binary sketch size: 666 bytes (of a 32,256 byte maximum)
Oh Ya
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13,!digitalRead(13));
delay(1000);
}compiles to a Binary sketch size: 1,234 bytes (of a 32,256 byte maximum)
void setup() {
DDRB = DDRB | B00100000; // set pin 13 to output
}
void loop() {
PORTB = PORTB ^ B00100000;
delay(1000);
}Compiles to a Binary sketch size: 666 bytes (of a 32,256 byte maximum)
Oh Ya