Microduino

Dependencies:   mbed

Fork of Io_moon by Li Weiyi

oled.h

Committer:
lixianyu
Date:
2016-06-24
Revision:
1:e34100dd6532
Parent:
0:740c1eb2df13

File content as of revision 1:e34100dd6532:

#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