Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Io_moon by
Diff: oled.h
- Revision:
- 0:740c1eb2df13
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/oled.h Thu Jun 23 11:16:14 2016 +0000 @@ -0,0 +1,8 @@ +#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 \ No newline at end of file
