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?

More than 3 years have passed since last update.

Arduino Uno と Arch Linux を接続

Last updated at Posted at 2017-07-23

Arduino と、Arch Linux を USB で接続しました。

必要なハード
 Arduino Uno 本体
 USB ケーブル  Aオス - Bオス
   Arduino の 電源供給は、USB から行います。

必要なソフト
 Arduino IDE

arduino-1.8.15-linux64.tar.xz
Arduino IDE 1.8.15 からダウンロード
インストールは、解凍してから、install.sh を実行

tar Jxfv arduino-1.8.15-linux64.tar.xz
cd arduino-1.8.15
sudo ./install.sh


設定

>```bash
sudo chmod 777 /dev/ttyACM0

Arduino IDE のアイコンがデスクトップにできるので、そのアイコンをクリックして起動
ポートの設定
 Tools -> Port で、/dev/ttyACM0 をチェック

サンプルプログラムのロード
 File -> Examples -> 01.Basics -> Blink
Upload (右矢印)をクリックすれば、プログラムが、USB 経由で、Arduino に送られ、実行されます。
 ボード上の LED が、1秒毎に、点滅します。

arduino_jul2201.png

サンプルプログラムを改造して、点滅間隔を変えてみます。
プログラムを編集して、Upload します。

arduino_jul2202.png

Blink_modified/Blink_modified.ino
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  delay(1000);
  digitalWrite(LED_BUILTIN, HIGH);
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  delay(1000);
  digitalWrite(LED_BUILTIN, HIGH);
  delay(3000);
  digitalWrite(LED_BUILTIN, 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?