Dougs Simple Experiment

Dependencies:   DHT mbed

Files at this revision

API Documentation at this revision

Comitter:
ansond
Date:
Mon Jun 25 22:31:23 2018 +0000
Commit message:
initial checkin

Changed in this revision

DHT.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DHT.lib	Mon Jun 25 22:31:23 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/teams/components/code/DHT/#6937e130feca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jun 25 22:31:23 2018 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+ #include "DHT.h"
+ 
+ Serial pc(USBTX, USBRX);
+ DHT sensor(D2,DHT11);
+ 
+ int main() {
+     while(1) { 
+         sensor.readData();
+         pc.printf("Humidity: %0.2f, Temp: %0.2ff\r\n", sensor.ReadHumidity(), sensor.ReadTemperature(FARENHEIT));
+         wait(2);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Jun 25 22:31:23 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/5aab5a7997ee
\ No newline at end of file