Microduino

Dependencies:   mbed

Fork of Io_moon by Li Weiyi

Committer:
lixianyu
Date:
Thu Jun 23 11:16:14 2016 +0000
Revision:
0:740c1eb2df13
* AM2321?????????2s????i2c?????; * SimpleTimer??bug?????????????????????????; * Blynk??bug??????????????; * ?????????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lixianyu 0:740c1eb2df13 1 #ifndef _OLED_H
lixianyu 0:740c1eb2df13 2 #define _OLED_H
lixianyu 0:740c1eb2df13 3 #include "Adafruit_SSD1306.h"
lixianyu 0:740c1eb2df13 4 extern void oled_init(void);
lixianyu 0:740c1eb2df13 5 extern void oled_init(Adafruit_SSD1306_I2c &adaf);
lixianyu 0:740c1eb2df13 6 extern void oled(float temp, float humi, float light, float pm25, float etoh);
lixianyu 0:740c1eb2df13 7 extern void oled(Adafruit_SSD1306_I2c &adaf, float temp, float humi, float light, float pm25, float etoh);
lixianyu 0:740c1eb2df13 8 #endif