1

Тема: OLED 1.3' SH1106_128X64

#include <Wire.h>
#include <U8glib.h>  // https://github.com/olikraus/u8glib/

U8GLIB_SH1106_128X64 u8g(U8G_I2C_OPT_DEV_0|U8G_I2C_OPT_FAST);	// Dev 0, Fast I2C / TWI
int i;
char s[6];

void setup() {
  Wire.begin();
  // u8g.setRot180();
}

void loop(void) {
  u8g.firstPage();  
  do {
     u8g.setFont(u8g_font_profont15r);
     u8g.drawStr( 0, 12, "OLED 1.3 128x64");
     u8g.setFont(u8g_font_profont11r);
     u8g.drawStr( 0, 25, "SH1106 U8glib");
     u8g.drawStr( 0, 37, "RCL-RADIO.RU");
     u8g.setFont(u8g_font_profont22r);
     u8g.drawLine(0, 45, 128, 45);
     u8g.setPrintPos(0, 64);
     u8g.print(-3.14);
   //  u8g.print(2023);
  } while( u8g.nextPage() );
 
  delay(500);
}