Using a small OLED I2C display with the Arduino Uno

Today I decided I wanted to figure out how to use a small OLED display that I have, with an Arduino Uno. I also partially followed this instructables article. So first I did some searching to figure out how I would go about connecting the display to the board. I found out that I would have to use a breadboard and some wires, as its pin orientation doesn't allow it to directly connect to the board. So with some additional searching, I found I had to connect the SCL pin on the display to the A5 pin on the board, and the SDA to A4, then VCC and GND to the appropriate 5V and Ground pins. Then, I plugged in the board to my computer and used the code found here to make a quick sketch in the Arduino IDE to use as an I2C scanner to find the I2C address of the display. Now having found the address to be 0x3C, the next step was to install the necessary libraries. https://github.com/adafruit/Adafruit_SSD1306 (SSD1306 library) https://github.com/adaf...