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.
Dependencies: AQM0802 BME280 mbed
Revision 0:a45809ba4aab, committed 2015-11-23
- Comitter:
- yasuyuki
- Date:
- Mon Nov 23 07:52:59 2015 +0000
- Commit message:
- release
Changed in this revision
diff -r 000000000000 -r a45809ba4aab AQM0802.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/AQM0802.lib Mon Nov 23 07:52:59 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/yasuyuki/code/AQM0802/#6fa303916aa8
diff -r 000000000000 -r a45809ba4aab BME280.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BME280.lib Mon Nov 23 07:52:59 2015 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/users/yasuyuki/code/BME280/#b32d0acc420d
diff -r 000000000000 -r a45809ba4aab main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Mon Nov 23 07:52:59 2015 +0000
@@ -0,0 +1,62 @@
+//**********************
+// Hygrometer, Thermometer and Pressure for mbed
+//
+// LPC1768 flash=512KB, ADC=12bits
+// LPC11U35 flash=64KB, ADC=10bits
+// Nucleo ADC=12bits
+//
+// (C)Copyright 2015 All rights reserved by Y.Onodera
+// http://einstlab.web.fc2.com
+//**********************
+#include "mbed.h"
+#include "AQM0802.h"
+#include "BME280.h"
+
+#if defined(TARGET_LPC1768)
+I2C i2c(p28,p27);
+#endif
+// for TG-LPC11U35-501
+#if defined(TARGET_LPC11U35_501)
+I2C i2c(P0_5,P0_4);
+#endif
+// for Nucleo
+#if defined(TARGET_NUCLEO_F401RE)
+I2C i2c(D14,D15);
+#endif
+
+AQM0802 lcd(i2c);
+BME280 bme280(i2c);
+
+int main() {
+
+ char msg[10];
+ float h;
+ float t;
+ float p;
+
+ while(1) {
+
+ h = bme280.humidity();
+ h = h/1024;
+ sprintf(msg,"%5.2f%% ",h);
+ lcd.locate(0,0);
+ lcd.print(msg);
+ wait(2);
+
+ t = bme280.temperature();
+ t = t/100;
+ sprintf(msg,"%5.2fC ",t);
+ lcd.locate(0,0);
+ lcd.print(msg);
+ wait(2);
+
+ p = bme280.pressure();
+ p = p/256;
+ sprintf(msg,"%6.0fPa ",p);
+ lcd.locate(0,0);
+ lcd.print(msg);
+ wait(2);
+ }
+
+}
+
diff -r 000000000000 -r a45809ba4aab mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Nov 23 07:52:59 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11 \ No newline at end of file