How to use an SSD1603 (oled 0.96'') with Attiny85

Good news!
I download the latest IDE version (1.8.4) and now the sketch compiles! :slight_smile:
#include <Arduino.h>
#include <U8x8lib.h>

U8X8_SSD1306_128X64_NONAME_SW_I2C u8x8(7,5,1);
void setup(void) {
u8x8.begin();
}

void loop(void) {
u8x8.setFont(u8x8_font_chroma48medium8_r);
u8x8.drawString(0,0,"Hello World!");
delay(1000);
}

I load it into my Attiny85 8Mhz with no problems, but now, when i connect the i2c OLED there are no writtens on it :confused:

Maybe can be the string "U8X8_SSD1306_128X64_NONAME_SW_I2C u8x8(7,5,1);" that is not correct? i write 7 and 5 following the data and clock signal reported in this scheme:

Am i doing something wrong?
Thanks for your help!!!