0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ATtiny3224: Lチカ

Posted at

ATtiny3224 で Lチカを行う方法です。

ArduinoUno で書き込み装置 jtagtoupdi を使いました。

image.png

プログラム

led_jul11/led_jul11.ino
void setup() {
  // put your setup code here, to run once:
    pinMode(5, OUTPUT);  
}

void loop() {
  // put your main code here, to run repeatedly:
    digitalWrite(5, LOW);
    delay(1000);
    digitalWrite(5, HIGH);
    delay(1000); 
}

Arduino IDE 2.3.6 を使いました。

led_jul11.png

ボードの設定

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?