2025年2月26日水曜日

ESP8266 pedia

 WEMOS/ESP01を所有するが前者がピンが多く便利でほぼ一択状態

DHt11,LCD1602はRANDOMNERD TUTORIALでいけた

SSD1306はARDUINO-IDEサンプルのGRAPHICはいけたが文字があかん

https://github.com/datasith/Ai_Ardulib_SSD1306/tree/mainをインストして成功

#include <Wire.h>

#include "ACROBOTIC_SSD1306.h" // これが重要!

void setup()

{

  Wire.begin();

  oled.init();                      // Initialze SSD1306 OLED display

  oled.clearDisplay();              // Clear screen

  oled.setTextXY(0,0);              // Set cursor position, start of line 0

  oled.putString("ACROBOTIC");

  oled.setTextXY(1,0);              // Set cursor position, start of line 1

  oled.putString("industries");

  oled.setTextXY(2,0);              // Set cursor position, start of line 2

  oled.putString("Pasadena,");

  oled.setTextXY(2,10);             // Set cursor position, line 2 10th character

  oled.putString("CA");

}

void loop()

{

}

0 件のコメント:

コメントを投稿