http://www.seeedstudio.com/wiki/Grove_-_OLED_Display_128%2a64
pro miniのI2CはA4:SDA A5:SDLです。
Pinは真ん中のホールから出してI2C機器に接続します。
I2Cの他VCC/GND線をつなぎます。
#include <Wire.h> #include <SeeedOLED.h> void setup() { Wire.begin(); SeeedOled.init(); //initialze SEEED OLED display DDRB|=0x21; PORTB |= 0x21; SeeedOled.clearDisplay(); //clear the screen and set start position to top left corner SeeedOled.setNormalDisplay(); //Set display to normal mode (i.e non-inverse mode) SeeedOled.setPageMode(); //Set addressing mode to Page Mode SeeedOled.setTextXY(0,0); //Set the cursor to Xth Page, Yth Column SeeedOled.putString("Hello World!"); //Print the String } void loop() { }