2016-01-01 23:45:55 +08:00
/*
PrintHelloWorld . ino
Use the ( Arduino compatible ) u8g2 function " print " to draw a text .
2016-05-12 01:11:22 +08:00
Also use the Arduino F ( ) macro to place the text into PROGMEM area .
2016-01-01 23:45:55 +08:00
2016-01-04 00:10:50 +08:00
Universal 8 bit Graphics Library ( https : //github.com/olikraus/u8g2/)
2016-01-01 23:45:55 +08:00
Copyright ( c ) 2016 , olikraus @ gmail . com
All rights reserved .
Redistribution and use in source and binary forms , with or without modification ,
are permitted provided that the following conditions are met :
* Redistributions of source code must retain the above copyright notice , this list
of conditions and the following disclaimer .
* Redistributions in binary form must reproduce the above copyright notice , this
list of conditions and the following disclaimer in the documentation and / or other
materials provided with the distribution .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES ,
INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL ,
SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ;
LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT ,
STRICT LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE )
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*/
2015-12-30 06:19:52 +08:00
# include <Arduino.h>
# include <SPI.h>
# include <U8g2lib.h>
2016-01-01 23:45:55 +08:00
/*
U8glib Example Overview :
Frame Buffer Examples : clearBuffer / sendBuffer . Fast , but may not work with all Arduino boards because of RAM consumption
Page Buffer Examples : firstPage / nextPage . Less RAM usage , should work with all Arduino boards .
U8x8 Text Only Example : No RAM usage , direct communication with display controller . No graphics , 8 x8 Text only .
This is a page buffer example .
*/
2016-05-10 05:10:51 +08:00
// U8g2 Contructor List (Picture Loop Page Buffer)
2016-05-12 02:25:14 +08:00
// The complete list is available here: https://github.com/olikraus/u8g2/wiki/u8g2setupcpp
2016-05-26 14:31:29 +08:00
// Please update the pin numbers according to your setup. Use U8X8_PIN_NONE if the reset pin is not connected
2016-05-10 05:10:51 +08:00
//U8G2_SSD1306_128X64_NONAME_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
2015-12-30 06:19:52 +08:00
//U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_1_3W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* reset=*/ 8);
2016-05-14 03:50:04 +08:00
//U8G2_SSD1306_128X64_NONAME_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE); // All Boards without Reset of the Display
2015-12-30 06:19:52 +08:00
//U8G2_SSD1306_128X64_NONAME_1_6800 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8);
//U8G2_SSD1306_128X64_NONAME_1_8080 u8g2(U8G2_R0, 13, 11, 2, 3, 4, 5, 6, A4, /*enable=*/ 7, /*cs=*/ 10, /*dc=*/ 9, /*reset=*/ 8);
2016-05-15 21:25:34 +08:00
//U8G2_SSD1306_128X32_UNIVISION_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ 21, /* data=*/ 20, /* reset=*/ U8X8_PIN_NONE); // Adafruit Feather M0 Basic Proto + FeatherWing OLED
//U8G2_SSD1306_128X32_UNIVISION_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, /* data=*/ SDA, /* reset=*/ U8X8_PIN_NONE); // Adafruit Feather ESP8266/32u4 Boards + FeatherWing OLED
//U8G2_SSD1306_128X32_UNIVISION_1_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // Adafruit ESP8266/32u4/ARM Boards + FeatherWing OLED
2016-05-10 05:10:51 +08:00
//U8G2_UC1701_DOGS102_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_UC1701_DOGS102_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7920_192X32_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 18, /*cs=*/ U8X8_PIN_NONE, /*dc=*/ 17, /*reset=*/ U8X8_PIN_NONE);
//U8G2_ST7920_192X32_1_SW_SPI u8g2(U8G2_R0, /* clock=*/ 18 /* A4 */ , /* data=*/ 16 /* A2 */, /* CS=*/ 17 /* A3 */, /* reset=*/ U8X8_PIN_NONE);
//U8G2_ST7920_128X64_1_SW_SPI u8g2(U8G2_R0, /* clock=*/ 18 /* A4 */ , /* data=*/ 16 /* A2 */, /* CS=*/ 17 /* A3 */, /* reset=*/ U8X8_PIN_NONE);
2016-05-26 14:31:29 +08:00
//U8G2_ST7565_DOGM128_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8G2_ST7565_DOGM128_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
2015-12-30 06:19:52 +08:00
2016-05-10 05:10:51 +08:00
// End of constructor list
2015-12-30 06:19:52 +08:00
void setup ( void ) {
pinMode ( 9 , OUTPUT ) ;
digitalWrite ( 9 , 0 ) ; // default output in I2C mode for the SSD1306 test shield: set the i2c adr to 0
u8g2 . begin ( ) ;
}
void loop ( void ) {
2016-05-12 01:11:22 +08:00
u8g2 . setFont ( u8g2_font_ncenB14_tr ) ;
2015-12-30 06:19:52 +08:00
u8g2 . firstPage ( ) ;
do {
2016-05-12 01:11:22 +08:00
u8g2 . setCursor ( 0 , 20 ) ;
u8g2 . print ( F ( " Hello World! " ) ) ;
2015-12-30 06:19:52 +08:00
} while ( u8g2 . nextPage ( ) ) ;
delay ( 1000 ) ;
}