This is the program of ThingSpeak using WizFi310

Dependencies:   WizFi310Interface_Legacy_newv34 mbed

Fork of WizFi310_Tweet_1 by ajeet prajapati

Files at this revision

API Documentation at this revision

Comitter:
ajeet3004
Date:
Fri Nov 24 08:36:07 2017 +0000
Parent:
1:c630ba74e621
Commit message:
feffff

Changed in this revision

WizFi310Interface_Legacy_newv2.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
diff -r c630ba74e621 -r c798b856c982 WizFi310Interface_Legacy_newv2.lib
--- a/WizFi310Interface_Legacy_newv2.lib	Thu Sep 28 08:52:17 2017 +0000
+++ b/WizFi310Interface_Legacy_newv2.lib	Fri Nov 24 08:36:07 2017 +0000
@@ -1,1 +1,1 @@
-https://os.mbed.com/users/ajeet3004/code/PIRSensorWithTwitter/#8d47f7e3f9d6
+https://os.mbed.com/users/ajeet3004/code/WizFi310Interface_Legacy_newv34/#460cb7603faf
diff -r c630ba74e621 -r c798b856c982 main.cpp
--- a/main.cpp	Thu Sep 28 08:52:17 2017 +0000
+++ b/main.cpp	Fri Nov 24 08:36:07 2017 +0000
@@ -21,28 +21,29 @@
 #include "mbed.h"
 #include "WizFi310Interface.h"
 
+#define SECURE WizFi310::SEC_WPA2_MIXED
+//#define SSID "CDI"
+//#define PASS "Cdi*1717"
+#define SSID "cdi1"
+#define PASS "cdilab17"
+ # define var i ;
+ 
 
-#define SECURE WizFi310::SEC_WPA2_MIXED
-#define SSID "CDI"
-#define PASS "Cdi*1717"
-/*#define SSID "CDIWIZFI310TEST"
-#define PASS "1234567890"*/
+//DigitalOut myled(LED2);
+//DigitalIn PIR(D9);
+int i = 0;
+AnalogIn CDS(A0);
 
 #if defined(TARGET_WIZwiki_W7500)
     WizFi310Interface wizfi310(D1, D0, D7, D6, D8, NC, 115200);
     Serial pc(USBTX, USBRX);
 #endif
 
-
-/**
- *  \brief Hello World
- *  \param none
- *  \return int
- */
 int main()
 {
     pc.baud(115200);
- 
+    wait(0.5f);
+    int CDS_data=0;
     printf("WizFi310  STATION. \r\n");
     wizfi310.init();
     printf("After Initialisation. \r\n");
@@ -51,7 +52,34 @@
     if ( wizfi310.connect(SECURE, SSID, PASS, WizFi310::WM_STATION))      return -1;
     printf("After Connect. \r\n");
     printf("IP Address is %s\r\n", wizfi310.getIPAddress());
-    wizfi310.test_twitter();
+    
+ while(1)
+    {
+      
+      CDS_data=CDS.read()*1000; 
+      pc.printf("sensor data=%d\r\n ",CDS_data);
+    
     
-    //wizfi310.disconnect();
+    wizfi310.test_ThingSpeak(CDS_data);
+    wait(17);
+        //wizfi310.disconnect();  
+       //pc.printf("Hello WizWIki-W7500!\n\r");
+       
+       
+   // pc.printf("Reading PIR sensor values!\n\r");
+   // pc.printf("===========================================\n\r");
+   // int PIR_sensor;
+    
+        //while (i < 20) {
+       // PIR_sensor = PIR;
+       
+        //pc.printf("PIR Value : %d\r\n",PIR_sensor);
+      
+       // myled =! PIR_sensor;
+       // wait(0.2f);
+       // i++;
+     // }    
+     
+      }
+      
 }
\ No newline at end of file