hi
this is my code:
void setup() {
pinMode(4, OUTPUT);
}
void loop() {
digitalWrite(4, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(4, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
I just try " verify "
Who can advise me about this problem
"
recipe.preproc.macros pattern is missing
Error compiling for board ATtiny13 @ 9.6MHz (interne 9.6 MHz clock).
"
I've downloaded the ATtiny13 core files for Arduino
and
Extract the zipped file in the above location, (Arduino>Hardware folder).