offchooffcho / u8glib

Automatically exported from code.google.com/p/u8glib
Other
0 stars 0 forks source link

document adafruit ssd1306 constructor #289

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
class U8GLIB_SSD1306_ADAFRUIT_128X64 : public U8GLIB 
{
  public:
    U8GLIB_SSD1306_ADAFRUIT_128X64(uint8_t sck, uint8_t mosi, uint8_t cs, uint8_t a0, uint8_t reset = U8G_PIN_NONE) 
      : U8GLIB(&u8g_dev_ssd1306_adafruit_128x64_sw_spi, sck, mosi, cs, a0, reset)
      { }
    U8GLIB_SSD1306_ADAFRUIT_128X64(uint8_t cs, uint8_t a0, uint8_t reset = U8G_PIN_NONE) 
      : U8GLIB(&u8g_dev_ssd1306_adafruit_128x64_hw_spi, cs, a0, reset)
      { }
    U8GLIB_SSD1306_ADAFRUIT_128X64(uint8_t options = U8G_I2C_OPT_NONE) 
      : U8GLIB(&u8g_dev_ssd1306_adafruit_128x64_i2c, options)
      { }
};

Original issue reported on code.google.com by olikr...@gmail.com on 1 Oct 2014 at 6:32

GoogleCodeExporter commented 9 years ago
documented

Original comment by olikr...@gmail.com on 21 Dec 2014 at 5:23