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?

Digispark製AtTiny85のセットアップ

Posted at

そのうちちゃんとした記事にするのであくまで自分用メモです

つかうもの

Arduino IDEで

インストール

  1. [File] -> [Preferences]
  2. [Settings] -> Additional boards manager URLs:
  3. http://digistump.com/package_digistump_index.json を入力して右の変なボタン押してインストール
  4. ボードとして Digispark - Default 16.5mhz をセットする

注意点

  • USB繋ぎながらだと3&4ピンが使えない
  • アップロード時はUSBから外しておいて、「Plug in device now...」「Please plug in the device ...」が出たタイミングでUSB繋ぐ。じゃないとなんかうまくいかない

Lチカ

シンプルに2ピンとGNDに繋いでます

#define LED_PIN 2

void setup() {
  pinMode(LED_PIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_PIN, HIGH);
  delay(1000);
  digitalWrite(LED_PIN, LOW);
  delay(1000);
}

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?