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.

WaffleでもOLEDに文字を表示してみる

Last updated at Posted at 2021-03-28

はじめに

こちらの記事でArduino Nano EveryでOLEDに文字を表示したので、Waffleでも表示してみることにしました。

準備

環境構築

Waffleの環境構築はこちらを参照してください。
OLEDの環境構築は前の記事を参照してください。

結線

WaffleにはI2Cのコネクタがあるので、これとOLEDを繋ぎます。
ケーブルの色と接続先の組み合わせは以下の通りです。

Groveケーブル(Waffle) OLED
VCC
GND
SCA
SCL

image.png
image.png

サンプルプログラム

「Hello World!」と表示するプログラムを実行してみます。
こちらはArdiono Nano Everyとまったく同じなのですが、念のため、再掲します。

# include<Wire.h>
# include<Adafruit_GFX.h>
# include<Adafruit_SSD1306.h>

Adafruit_SSD1306 display(-1);

void setup() {
  // initialize
  display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
}

void loop() {
  // clear display
  display.clearDisplay();

  // set text parameter
  display.setTextSize(1);
  display.setTextColor(WHITE);

  // set text position
  display.setCursor(0, 0);

  // display text
  display.println("Hello");
  display.println("World!");

  // draw
  display.display();
  delay(1000);
}

I2Cで接続していますので、何も変更しなくても大丈夫です。

表示のされ方も同じになります。
image.png

まとめ

もう少し苦労するかと思いましたが、意外と簡単にWaffleでも表示できてしまいました。
Ardiuno互換、恐るべしです。

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?