8.1 Kombiniert das Übung 6.1 Licht bei Dämmerung einschalten mit RPC Variable um die Sensordaten via Client abzufragen.

Dependencies:   EthernetInterface HttpServer mbed-rpc mbed-rtos mbed

Fork of RPCHTTPServerVariable by th.iotkit2.ch

Files at this revision

API Documentation at this revision

Comitter:
stefan1691
Date:
Sat Mar 21 10:07:09 2015 +0000
Parent:
12:9281320e8687
Commit message:
Daemmerungsschaltung ergaenzt

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sat Mar 21 09:56:42 2015 +0000
+++ b/main.cpp	Sat Mar 21 10:07:09 2015 +0000
@@ -11,13 +11,21 @@
 
 // Servo + aktuelle Werte
 AnalogIn   light( A1 );
+DigitalOut d10( D10 );
 float val1;
 Ticker sensors;
 
 // Update Sensor Werte
 void updateVal()
 {
+    // Variable RPC zur Verfuegung stellen
     val1 = light;
+    
+    // Licht bei Daemmerung einschalten
+    if  ( light < 0.04f )
+        d10 = 1;
+    else 
+        d10 = 0;
 }
 
 int main()