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.
oled.h@4:e5018e5ba340, 2016-06-16 (annotated)
- Committer:
- lixianyu
- Date:
- Thu Jun 16 08:12:33 2016 +0000
- Revision:
- 4:e5018e5ba340
- Parent:
- 2:6cd3b0947188
ok
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| lixianyu | 1:0e75de2a5d21 | 1 | #ifndef _OLED_H |
| lixianyu | 1:0e75de2a5d21 | 2 | #define _OLED_H |
| lixianyu | 2:6cd3b0947188 | 3 | #include "Adafruit_SSD1306.h" |
| lixianyu | 1:0e75de2a5d21 | 4 | extern void oled_init(void); |
| lixianyu | 2:6cd3b0947188 | 5 | extern void oled_init(Adafruit_SSD1306_I2c &adaf); |
| lixianyu | 1:0e75de2a5d21 | 6 | extern void oled(float temp, float humi, float light, float pm25, float etoh); |
| lixianyu | 2:6cd3b0947188 | 7 | extern void oled(Adafruit_SSD1306_I2c &adaf, float temp, float humi, float light, float pm25, float etoh); |
| lixianyu | 1:0e75de2a5d21 | 8 | #endif |