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?

SSD1306の記事の紹介(テキスト、点、線、長方形、円、三角形、全体反転)

Last updated at Posted at 2024-08-20

x ふるいので読みかえが必要。 だいたい、合っている。

●インストール

Adafruit_SSD1306.hの編集は、いらない

ただし、setup( の直上のSCREEN_ADDRESSの変更とSCREEN_HEIGHTの確認は、いる



#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
#define OLED_RESET     -1 // Reset pin # (or -1 if sharing Arduino reset pin)
#define SCREEN_ADDRESS 0x3C ///< See datasheet for Address; 0x3D for 128x64, 0x3C for 128x32
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);


●テキスト、点、線、長方形、円、三角形、全体反転のしかたが書いてある。

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?