128x64 i2c OLED display

I need some help with this new display I bought. This is what it looks like. 

Product Page: https://www.creatroninc.com/product/128x64-i2c-oled-lcd-white/?search_query=oled&results=1

Front: http://i.imgur.com/HSTodme.jpg

Back: http://i.imgur.com/Bh53u3P.jpg

 

Once I hook everything up and upload the code to my Arduino Mega, the screen lights up and displays a mainly white screen with some black dots scattered around. There is a patch of black close to the top that goes horizontally across the entire screen, only in that patch can I see some stars flying around. I guess thats the thing that it meant to be shown. 

This video shows the exact model I have and in the end you see what my screen is supposed to show: https://youtu.be/A9EwJ7M7OsI?t=465

(that link is specifically meant for a certain point in the video, dont change where it takes you)

 

Here is the video I used to finally get the screen to actually turn on, but sadly I get the wierd white screen and this guy's screen works just fine: https://www.youtube.com/watch?v=VEZGn0zYHiE

 

This is a video I recorded showing my wiring of the display. If you see any problems please let me know: https://www.youtube.com/watch?v=I_LpNTP-98c

 

The link below is a guide to get a very similar model to work 

https://learn.adafruit.com/monochrome-oled-breakouts/overview

 

The video guide that eventually got me to get the screen to actually light up used these two libraries. 

1. https://github.com/adafruit/Adafruit_SSD1306

2. https://github.com/adafruit/Adafruit-GFX-Library

 

This is all the info I'm able to provide to help you guys help me. If you see anything please point it out. Thank you. 

https://www.youtube.com/watch?v=I_LpNTP-98c

Have you a reset pin ?

For me the Adafruit library doesn’t work neither. I can’t remind exactly, I think it is because that library needs a reset pin on pin 4, that my screen doens’t have.

 

I’m using U8glib instead. A bit tricky. uncomment the right line, for the right screen :

U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NO_ACK);

 

Hope it helps !

That totally worked man, thanks!!!

Yeah a googled it and downloaded it. Installed library. Now I just need to know how to use the library’s coding. You know, for chaing font size and stuff. Thanks so much dude.