]> Zhao Yanbai Git Server - acecode.git/commitdiff
...
authoracevest <zhaoyanbai@126.com>
Sat, 20 Jun 2015 03:34:47 +0000 (11:34 +0800)
committeracevest <zhaoyanbai@126.com>
Sat, 20 Jun 2015 03:34:47 +0000 (11:34 +0800)
arduino/Sensors/Sensors.ino
learn/doc/zshrc [new file with mode: 0644]

index 2059970025b13bc4e81aad18160bdc8dc8460b9b..81f45aa8157e2fb5d28f4bad9340a258d982d546 100644 (file)
@@ -1,6 +1,7 @@
 #include <SoftwareSerial.h>
 #include <OneWire.h>
 #include <DallasTemperature.h>
+#include <DHT.h>
 
 #define TEMP_WIRE_BUS 2
 
@@ -11,6 +12,8 @@ DallasTemperature TempSensors(&TempWire);
 SoftwareSerial BTSerial(10, 11); // RX | TX
 
 
+DHT dht;
+
 int cnt = 0;
 const int ledPin = 12;
 
@@ -23,46 +26,55 @@ void setup() {
   pinMode(2, INPUT);
   pinMode(3, INPUT);
   
-  TempSensors.begin();
+  TempSensors.begin();//TEMP_WIRE_BUS);
+  TempSensors.setResolution(12);
+  
+  dht.setup(4, DHT::DHT11);
 }
 
-charitos(int n)
+char *itos(int n)
 {
     static char buf[16];
     sprintf(buf, "%d", n);
     return buf;
 }
 
+char *ftos(float f)
+{
+  static char buf[32];
+  sprintf(buf, "%.2f", f);
+  return buf; 
+}
+
 void loop() {
   cnt ++;
+#if 0
+  int bd = digitalRead(7);
+  
+    Serial.print(">");
+    Serial.print(bd);
+    Serial.println("<");
+  delay(100);
+  return; 
+#endif
+  
   TempSensors.requestTemperatures();
   float tv = TempSensors.getTempCByIndex(0);
-  
+
+  //delay(dht.getMinimumSamplingPeriod());
+  float hv = dht.getHumidity();  // Humidity
+
   int lv = analogRead(0);  // Light
  
   //int tv = analogRead(1);  // Temperature
   
   int hb = analogRead(2);  // Human Body 
   
-  int hv = analogRead(3);  // humidity
-  
-  
-  if(hb < 100)
-  {
-    hb = 0;
-  }
-  
-  digitalWrite(ledPin, hb > 0 ? HIGH : LOW);
+  //int hv = analogRead(3);  // humidity
   
   
-  delay(10);
-  
-  if(cnt % 100 == 0)
+  if(cnt % 1 == 0)
   {
-    float temperature;
-    //float resistance = (float)(1023.0-tv)*10000.0/tv;
-    //temperature = 1.00000/(log(resistance/10000)/3975+1/298.15) - 273.15;
-    
     Serial.print(">");
     Serial.print(lv);
     Serial.print(":");
@@ -71,13 +83,31 @@ void loop() {
     Serial.print(hb);
     Serial.print(":");
     Serial.print(hv);
+    Serial.print(" Humidity:");
+    Serial.print(dht.getHumidity());
+    Serial.print(" Temp:");
+    Serial.print(dht.getTemperature());
     Serial.println(" ");
+
+    
+#if 1
+    BTSerial.print(">");
+    BTSerial.print(lv, DEC);
+    BTSerial.print(":");
+    BTSerial.print(tv, DEC);
+    BTSerial.print(":");
+    BTSerial.print(hv, DEC);
+    BTSerial.print(":");
+    BTSerial.print(hb, DEC);
+    BTSerial.println("<");
+#endif
+
     
 #if 0
     BTSerial.write(">");
     BTSerial.write(itos(lv));
     BTSerial.write(":");
-    BTSerial.write(itos(tv));
+    BTSerial.write(ftos(tv));
     BTSerial.write(":");
     BTSerial.write(itos(hb));
     BTSerial.write(":");
diff --git a/learn/doc/zshrc b/learn/doc/zshrc
new file mode 100644 (file)
index 0000000..14e93f2
--- /dev/null
@@ -0,0 +1,3 @@
+# for mac zsh
+alias ls='ls -G'
+alias ll='ls -l -G'