This is a monochrome graphic display module with built-in 0.96 inch 128X64 high-resolution display. The driver chip is a SSD1306 and communicates using I2C -- that means that only 2 pins are used on the arduino!
Arduino Library Installation: Library Manager --> Grove - OLED 0.96
Test Code
#include <Wire.h>
#include <SeeedOLED.h>
void setup()
{
Wire.begin();
SeeedOled.init();
SeeedOled.setBrightness(0x8f);
SeeedOled.clearDisplay();
SeeedOled.setNormalDisplay();
SeeedOled.setPageMode();
SeeedOled.setTextXY(0,0);
SeeedOled.putString("Hello World!");
}
void loop()
{
}