work.

Dependencies:   Blynk mbed

oled.h

Committer:
lixianyu
Date:
2016-06-15
Revision:
2:6cd3b0947188
Parent:
1:0e75de2a5d21

File content as of revision 2:6cd3b0947188:

#ifndef _OLED_H
#define _OLED_H
#include "Adafruit_SSD1306.h"
extern void oled_init(void);
extern void oled_init(Adafruit_SSD1306_I2c &adaf);
extern void oled(float temp, float humi, float light, float pm25, float etoh);
extern void oled(Adafruit_SSD1306_I2c &adaf, float temp, float humi, float light, float pm25, float etoh);
#endif