p kj / Mbed 2 deprecated LPC824-BlynkWeatherstation

Dependencies:   mbed

Fork of Io_moon by Li Weiyi

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers oled.h Source File

oled.h

00001 #ifndef _OLED_H
00002 #define _OLED_H
00003 #include "Adafruit_SSD1306.h"
00004 extern void oled_init(void);
00005 extern void oled_init(Adafruit_SSD1306_I2c &adaf);
00006 extern void oled(float temp, float humi, float light, float pm25, float etoh);
00007 extern void oled(Adafruit_SSD1306_I2c &adaf, float temp, float humi, float light, float pm25, float etoh);
00008 #endif