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.

M5StackでLチカ

Posted at

手元にある部材を使って、M5StackでLチカしてみました。

1.部材接続

  • LEDと抵抗をM5Stackに接続します(砲弾型LEDは足の長いほうがアノードです)
    • LEDアノード(+)とM5Stackのポート2
    • LEDカソード(-)と抵抗とM5StackのGnd
      image.png

2.ソースコード

ライブラリの追加インストールは不要です

# include <M5Stack.h>

# define LED_PIN 2

void setup() {
    M5.begin();
    pinMode(LED_PIN, OUTPUT);
}
/* 1秒ごとに点滅 */
void loop() {
    digitalWrite(LED_PIN, HIGH);
    delay(1000);
    digitalWrite(LED_PIN, LOW);
    delay(1000);
}

簡単でも、実際にLEDが点滅すると嬉しいですね。

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?