Microduino

Dependencies:   mbed

Fork of Io_moon by Li Weiyi

Committer:
lixianyu
Date:
Fri Jun 24 02:06:43 2016 +0000
Revision:
1:e34100dd6532
Parent:
0:740c1eb2df13
?Arduino??????????0~255??????LPC824????????????????

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