ATtiny84 през Arduino IDE
- 8 Kbyte of in-system programmable program memory flash
- 512 bytes in-system programmable EEPROM
- 512 bytes internal SRAM
Оттук:
SpenceKonde/ATTinyCore
https://github.com/SpenceKonde/ATTinyCoreclock: 8 MHz Internal
Прикачени файлове:
Pinout_x4.jpg [ 133.72 KiB | Прегледано 209 пъти ]
Прикачени файлове:
attiny84_arduino_ide.jpg [ 191.41 KiB | Прегледано 209 пъти ]
Blink към 3 (pin 6)
Код за потвърждение:
void setup() {
pinMode(3, OUTPUT);
}
void loop() {
digitalWrite(3, HIGH); // turn the LED on
delay(100); // wait
digitalWrite(3, LOW); // turn the LED off
delay(100); // wait
}