/*
06/01/2016
Author: Makerbro
Platforms: ESP8266
Language: C++
File: HelloOLED.ino
------------------------------------------------------------------------
Description:
Demo for OLED display showcasing writing text to the screen.
------------------------------------------------------------------------
Please consider buying products from ACROBOTIC to help fund future
Open-Source projects like this! We'll always put our best effort in every
project, and release all our design files and code for you to use.
https://acrobotic.com/
------------------------------------------------------------------------
License:
Released under the MIT license. Please check LICENSE.txt for more
information. All text above must be included in any redistribution.
*/
#include <Wire.h>
#include "ACROBOTIC_SSD1306.h"
void setup()
{
Wire.begin();
oled.init(); // Initialze SSD1306 OLED display
oled.clearDisplay(); // Clear screen
oled.setTextXY(0,0); // Set cursor position, start of line 0
oled.putString("ACROBOTIC");
oled.setTextXY(1,0); // Set cursor position, start of line 1
oled.putString("industries");
oled.setTextXY(2,0); // Set cursor position, start of line 2
oled.putString("Pasadena,");
oled.setTextXY(2,10); // Set cursor position, line 2 10th character
oled.putString("CA");
}
void loop()
{
}