WIZwiki W7500 ADC Performance Meter

Dependencies:   SDFileSystem STATIC_COLORS WIZnetInterface mbed

Fork of WIZwiki-W7500_ADC_Sampling by FOURNET Olivier

/media/uploads/Fo170/wizwiki-w7500_adc_performancemeter.png

Committer:
Fo170
Date:
Thu Jul 07 22:44:46 2016 +0000
Revision:
0:70a1e939250e
Child:
1:4853006cf179
WIZwiki-W7500_ADC + Flot Exemple interactivity

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Fo170 0:70a1e939250e 1 #include "mbed.h"
Fo170 0:70a1e939250e 2 #include "EthernetInterface.h"
Fo170 0:70a1e939250e 3 #include "SDFileSystem.h"
Fo170 0:70a1e939250e 4 #include <stdio.h>
Fo170 0:70a1e939250e 5 #include <string.h>
Fo170 0:70a1e939250e 6
Fo170 0:70a1e939250e 7 #define USE_DHCP 1
Fo170 0:70a1e939250e 8 /*
Fo170 0:70a1e939250e 9 MAC Address Details ( http://www.macvendorlookup.com/ )
Fo170 0:70a1e939250e 10 Company Wiznet Address
Fo170 0:70a1e939250e 11 Seoul 135-830
Fo170 0:70a1e939250e 12 Nonyhun, Kangnam
Fo170 0:70a1e939250e 13 KOREA, REPUBLIC OF
Fo170 0:70a1e939250e 14 Range : 00:08:DC:00:00:00 - 00:08:DC:FF:FF:FF
Fo170 0:70a1e939250e 15 Type : MA-L: IEEE MAC Address Large (24-bit block size)
Fo170 0:70a1e939250e 16 3,1415926535897932384626433832795
Fo170 0:70a1e939250e 17 */
Fo170 0:70a1e939250e 18 //#define MAC "\x31\x41\x59\x26\x53\x58"
Fo170 0:70a1e939250e 19 #define MAC "\x00\x08\xDC\x31\x41\x59"
Fo170 0:70a1e939250e 20 //#define MAC "\x00\x08\xDC\x11\x34\x78"
Fo170 0:70a1e939250e 21 #define IP "192.168.0.170"
Fo170 0:70a1e939250e 22 #define MASK "255.255.255.0"
Fo170 0:70a1e939250e 23 #define GATEWAY "192.168.0.254"
Fo170 0:70a1e939250e 24
Fo170 0:70a1e939250e 25 #define HTTPD_SERVER_PORT 80
Fo170 0:70a1e939250e 26 #define HTTPD_MAX_REQ_LENGTH 1023
Fo170 0:70a1e939250e 27 #define HTTPD_MAX_HDR_LENGTH 255
Fo170 0:70a1e939250e 28 #define HTTPD_MAX_FNAME_LENGTH 127
Fo170 0:70a1e939250e 29 #define HTTPD_MAX_DNAME_LENGTH 127
Fo170 0:70a1e939250e 30
Fo170 0:70a1e939250e 31 #if defined(TARGET_WIZwiki_W7500)
Fo170 0:70a1e939250e 32 Serial uart(USBTX, USBRX);
Fo170 0:70a1e939250e 33 SDFileSystem sd(PB_3, PB_2, PB_1, PB_0, "sd"); // WIZwiki-W7500
Fo170 0:70a1e939250e 34 #include "static_colors.h"
Fo170 0:70a1e939250e 35 // LED RED : server listning status
Fo170 0:70a1e939250e 36 // LED GREEN : socket connecting status Ok
Fo170 0:70a1e939250e 37 // LED BLUE : socket connecting status Busy
Fo170 0:70a1e939250e 38 #endif
Fo170 0:70a1e939250e 39
Fo170 0:70a1e939250e 40 EthernetInterface eth;
Fo170 0:70a1e939250e 41 TCPSocketServer server;
Fo170 0:70a1e939250e 42 TCPSocketConnection client;
Fo170 0:70a1e939250e 43
Fo170 0:70a1e939250e 44 char buffer[HTTPD_MAX_REQ_LENGTH+1];
Fo170 0:70a1e939250e 45 char httpHeader[HTTPD_MAX_HDR_LENGTH+1];
Fo170 0:70a1e939250e 46 char fileName[HTTPD_MAX_FNAME_LENGTH+1];
Fo170 0:70a1e939250e 47 char dirName[HTTPD_MAX_DNAME_LENGTH+1];
Fo170 0:70a1e939250e 48 char *uristr;
Fo170 0:70a1e939250e 49 char *eou;
Fo170 0:70a1e939250e 50 char *qrystr;
Fo170 0:70a1e939250e 51
Fo170 0:70a1e939250e 52 FILE *fp;
Fo170 0:70a1e939250e 53 int rdCnt;
Fo170 0:70a1e939250e 54
Fo170 0:70a1e939250e 55 // Initialize a pins to perform analog input and digital output fucntions
Fo170 0:70a1e939250e 56 AnalogIn ain0(A0);
Fo170 0:70a1e939250e 57 AnalogIn ain1(A1);
Fo170 0:70a1e939250e 58 AnalogIn ain2(A2);
Fo170 0:70a1e939250e 59 AnalogIn ain3(A3);
Fo170 0:70a1e939250e 60
Fo170 0:70a1e939250e 61 float a0_f, a1_f, a2_f, a3_f;
Fo170 0:70a1e939250e 62
Fo170 0:70a1e939250e 63 #define __IP_LOCAL__ IP
Fo170 0:70a1e939250e 64 #define __hebergement__ "http://olivier.fournet.free.fr/"
Fo170 0:70a1e939250e 65 #define __Time_between_page_refresh__ "1"
Fo170 0:70a1e939250e 66 //#include <hebergement.h>
Fo170 0:70a1e939250e 67
Fo170 0:70a1e939250e 68 int refresh = 1; // 1 second refresh
Fo170 0:70a1e939250e 69
Fo170 0:70a1e939250e 70 #define NB_SAMPLES 10
Fo170 0:70a1e939250e 71 unsigned long int Sample = 0;
Fo170 0:70a1e939250e 72 float adc_samples[NB_SAMPLES];// = { 0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0,1.01,1.02,1.03,1.04 };
Fo170 0:70a1e939250e 73 float time_samples[NB_SAMPLES];// = { -0.1,2,3,4,5,6,7,8,9,10,11,12,13,14 };
Fo170 0:70a1e939250e 74 float x_min = 0.0, x_max = 0.0;
Fo170 0:70a1e939250e 75 float y_min = 0.0, y_max = 0.0;
Fo170 0:70a1e939250e 76 float Seconds = 0.0;
Fo170 0:70a1e939250e 77 float meas = 0.0;
Fo170 0:70a1e939250e 78
Fo170 0:70a1e939250e 79 //------------
Fo170 0:70a1e939250e 80 #define __Time_tic_in_Second__ 0.1
Fo170 0:70a1e939250e 81
Fo170 0:70a1e939250e 82 Ticker time_tic;
Fo170 0:70a1e939250e 83
Fo170 0:70a1e939250e 84 void add_one_tic()
Fo170 0:70a1e939250e 85 {
Fo170 0:70a1e939250e 86 int i;
Fo170 0:70a1e939250e 87
Fo170 0:70a1e939250e 88 Seconds = Seconds + (float)__Time_tic_in_Second__;
Fo170 0:70a1e939250e 89
Fo170 0:70a1e939250e 90 // mesures ADC
Fo170 0:70a1e939250e 91 meas = ain0.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
Fo170 0:70a1e939250e 92 meas = meas * 3300.0; // Change the value to be in the 0 to 3300 range
Fo170 0:70a1e939250e 93
Fo170 0:70a1e939250e 94 x_min = x_max = Seconds;
Fo170 0:70a1e939250e 95 y_min = y_max = meas;
Fo170 0:70a1e939250e 96
Fo170 0:70a1e939250e 97 for(i = 1 ; i < NB_SAMPLES ; i++)
Fo170 0:70a1e939250e 98 {
Fo170 0:70a1e939250e 99 time_samples[i-1] = time_samples[i];
Fo170 0:70a1e939250e 100 adc_samples[i-1] = adc_samples[i];
Fo170 0:70a1e939250e 101 if( time_samples[i] < x_min ) x_min = time_samples[i];
Fo170 0:70a1e939250e 102 if( time_samples[i] > x_max ) x_max = time_samples[i];
Fo170 0:70a1e939250e 103 if( adc_samples[i] < y_min ) y_min = adc_samples[i];
Fo170 0:70a1e939250e 104 if( adc_samples[i] > y_max ) y_max = adc_samples[i];
Fo170 0:70a1e939250e 105 }
Fo170 0:70a1e939250e 106
Fo170 0:70a1e939250e 107 adc_samples[NB_SAMPLES-1] = meas;
Fo170 0:70a1e939250e 108 time_samples[NB_SAMPLES-1] = Seconds;
Fo170 0:70a1e939250e 109 }
Fo170 0:70a1e939250e 110 //------------
Fo170 0:70a1e939250e 111
Fo170 0:70a1e939250e 112 Ticker ledTick;
Fo170 0:70a1e939250e 113
Fo170 0:70a1e939250e 114 //char str[] = "This is a sample string";
Fo170 0:70a1e939250e 115 char *pch;
Fo170 0:70a1e939250e 116 char ext[5];
Fo170 0:70a1e939250e 117 char ext_gif[] = "gif";
Fo170 0:70a1e939250e 118 char ext_jpg[] = "jpg";
Fo170 0:70a1e939250e 119 char ext_png[] = "png";
Fo170 0:70a1e939250e 120 char ext_tiff[] = "tiff";
Fo170 0:70a1e939250e 121 int pos_ext;
Fo170 0:70a1e939250e 122 int extLen;
Fo170 0:70a1e939250e 123
Fo170 0:70a1e939250e 124 void ledTickfunc()
Fo170 0:70a1e939250e 125 {
Fo170 0:70a1e939250e 126 led_r = !led_r;
Fo170 0:70a1e939250e 127 }
Fo170 0:70a1e939250e 128
Fo170 0:70a1e939250e 129 void printf_send_client(const char *str_c)
Fo170 0:70a1e939250e 130 {
Fo170 0:70a1e939250e 131 char http_send[HTTPD_MAX_REQ_LENGTH+1];
Fo170 0:70a1e939250e 132 sprintf(http_send,str_c);
Fo170 0:70a1e939250e 133 client.send(http_send,strlen(http_send));
Fo170 0:70a1e939250e 134 }
Fo170 0:70a1e939250e 135
Fo170 0:70a1e939250e 136 void variables(void)
Fo170 0:70a1e939250e 137 {
Fo170 0:70a1e939250e 138 printf_send_client("<SCRIPT script language=\"javascript\" type=\"text/javascript\">\r\n");
Fo170 0:70a1e939250e 139 /*sprintf(httpHeader,"<SCRIPT script language=\"javascript\" type=\"text/javascript\">\r\n");
Fo170 0:70a1e939250e 140 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 141
Fo170 0:70a1e939250e 142 a0_f = ain0.read()*3.3;
Fo170 0:70a1e939250e 143 sprintf(httpHeader,"A0 = %3.3f;\r\n", a0_f);
Fo170 0:70a1e939250e 144 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 145
Fo170 0:70a1e939250e 146 a1_f = ain1.read()*3.3;
Fo170 0:70a1e939250e 147 sprintf(httpHeader,"A1 = %3.3f;\r\n", a1_f);
Fo170 0:70a1e939250e 148 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 149
Fo170 0:70a1e939250e 150 a2_f = ain2.read()*3.3;
Fo170 0:70a1e939250e 151 sprintf(httpHeader,"A2 = %3.3f;\r\n", a2_f);
Fo170 0:70a1e939250e 152 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 153
Fo170 0:70a1e939250e 154 a3_f = ain3.read()*3.3;
Fo170 0:70a1e939250e 155 sprintf(httpHeader,"A3 = %3.3f;\r\n", a3_f);
Fo170 0:70a1e939250e 156 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 157
Fo170 0:70a1e939250e 158 printf_send_client("</SCRIPT>\r\n");
Fo170 0:70a1e939250e 159 /*sprintf(httpHeader,"</SCRIPT>\r\n");
Fo170 0:70a1e939250e 160 client.send(httpHeader,strlen(httpHeader)); */
Fo170 0:70a1e939250e 161 }
Fo170 0:70a1e939250e 162
Fo170 0:70a1e939250e 163 void ETAT(void)
Fo170 0:70a1e939250e 164 {
Fo170 0:70a1e939250e 165 int i;
Fo170 0:70a1e939250e 166
Fo170 0:70a1e939250e 167 // httpHeader
Fo170 0:70a1e939250e 168 printf_send_client("HTTP/1.1 200 OK\r\nContent-Type: text/html\r\nConnection: Close\r\n\r\n");
Fo170 0:70a1e939250e 169 /*sprintf(httpHeader,"HTTP/1.1 200 OK\r\nContent-Type: text/html\r\nConnection: Close\r\n\r\n");
Fo170 0:70a1e939250e 170 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 171
Fo170 0:70a1e939250e 172 // Début page Web
Fo170 0:70a1e939250e 173 printf_send_client("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n");
Fo170 0:70a1e939250e 174 /*sprintf(httpHeader,"<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n");
Fo170 0:70a1e939250e 175 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 176 // meta_refresh
Fo170 0:70a1e939250e 177 //sprintf(httpHeader,"%s",str_meta_refresh);
Fo170 0:70a1e939250e 178 sprintf(httpHeader,"<meta http-equiv=\"refresh\" content=\"" __Time_between_page_refresh__ ";url=http://%s/\">\r\n", eth.getIPAddress() );
Fo170 0:70a1e939250e 179 //sprintf(httpHeader,"<meta http-equiv=\"refresh\" content=\"1;url=http://%s/\">\r\n", eth.getIPAddress() );
Fo170 0:70a1e939250e 180 //sprintf(httpHeader,"<meta http-equiv=\"refresh\" content=\"%u;url=http://%s/\">\r\n", refresh, eth.getIPAddress() );
Fo170 0:70a1e939250e 181 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 182
Fo170 0:70a1e939250e 183 printf_send_client("<html><head>\r\n");
Fo170 0:70a1e939250e 184 /*sprintf(httpHeader,"<html><head>\r\n");
Fo170 0:70a1e939250e 185 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 186 // title
Fo170 0:70a1e939250e 187 printf_send_client("<title>WIZwiki-W7500 - Flot Examples: Interactivity</title>\r\n");
Fo170 0:70a1e939250e 188 /*sprintf(httpHeader,"<title>WIZwiki-W7500 - Flot Examples: Interactivity</title>\r\n");
Fo170 0:70a1e939250e 189 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 190 // JavaScript Interactivity
Fo170 0:70a1e939250e 191 sprintf(httpHeader,"<script language=\"javascript\" type=\"text/javascript\" src=\"" __hebergement__ "electronique/e/WIZwiki-W7500/js/WIZwiki-W7500_Interactivity_init.js\"></script>\r\n");
Fo170 0:70a1e939250e 192 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 193
Fo170 0:70a1e939250e 194 printf_send_client("<script language=\"javascript\" type=\"text/javascript\">init_WIZwiki_W7500_Interactivity();</script>\r\n");
Fo170 0:70a1e939250e 195 /*sprintf(httpHeader,"<script language=\"javascript\" type=\"text/javascript\">init_WIZwiki_W7500_Interactivity();</script>\r\n");
Fo170 0:70a1e939250e 196 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 197
Fo170 0:70a1e939250e 198 // Variables JavaScript
Fo170 0:70a1e939250e 199 printf_send_client("<script language=\"javascript\" type=\"text/javascript\">\r\n");
Fo170 0:70a1e939250e 200 /*sprintf(httpHeader,"<script language=\"javascript\" type=\"text/javascript\">\r\n");
Fo170 0:70a1e939250e 201 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 202 printf_send_client("var color_Y = \"#FF0000\";\r\n");
Fo170 0:70a1e939250e 203 /*sprintf(httpHeader,"var color_Y = \"#FF0000\";\r\n");
Fo170 0:70a1e939250e 204 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 205 printf_send_client("var label_Y = \"Adc(mV)\";\r\n");
Fo170 0:70a1e939250e 206 /*sprintf(httpHeader,"var label_Y = \"Adc(mV)\";\r\n");
Fo170 0:70a1e939250e 207 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 208 // sprintf(httpHeader, "var x_min = -0.5, x_max = 14.5, y_min = -0.5, y_max = 1.5;\r\n"); // TEST
Fo170 0:70a1e939250e 209 sprintf(httpHeader, "var x_min = %.1f, x_max = %.1f, y_min = %.1f, y_max = %.1f;\r\n", x_min, x_max, y_min, y_max);
Fo170 0:70a1e939250e 210 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 211
Fo170 0:70a1e939250e 212 // sprintf(httpHeader, "var array_value = [[-0.1,0.1],[2,0.2],[3,0.3],[4,0.4],[5,0.5],[6,0.6],[7,0.7],[8,0.8],[9,0.9],[10,1],[11,1.01],[12,1.02],[13,1.03],[14,1.04]];\r\n"); // TEST
Fo170 0:70a1e939250e 213 // client.send(httpHeader,strlen(httpHeader)); // TEST
Fo170 0:70a1e939250e 214
Fo170 0:70a1e939250e 215 if(Sample > NB_SAMPLES)
Fo170 0:70a1e939250e 216 {
Fo170 0:70a1e939250e 217 printf_send_client("var array_value = [");
Fo170 0:70a1e939250e 218 /*sprintf(httpHeader,"var array_value = [");
Fo170 0:70a1e939250e 219 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 220 for(i = 0 ; i < NB_SAMPLES ; i++)
Fo170 0:70a1e939250e 221 {
Fo170 0:70a1e939250e 222 if(i < NB_SAMPLES) sprintf(httpHeader, "[%.1f,%.1f],", time_samples[i], adc_samples[i]);
Fo170 0:70a1e939250e 223 else sprintf(httpHeader, "[%.1f,%.1f]", time_samples[i], adc_samples[i]);
Fo170 0:70a1e939250e 224 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 225 }
Fo170 0:70a1e939250e 226 printf_send_client("];\r\n");
Fo170 0:70a1e939250e 227 /*sprintf(httpHeader,"];\r\n");
Fo170 0:70a1e939250e 228 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 229 }
Fo170 0:70a1e939250e 230
Fo170 0:70a1e939250e 231 Sample++;
Fo170 0:70a1e939250e 232 printf_send_client("</script>\r\n");
Fo170 0:70a1e939250e 233 /*sprintf(httpHeader,"</script>\r\n");
Fo170 0:70a1e939250e 234 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 235
Fo170 0:70a1e939250e 236 // <SCRIPT>
Fo170 0:70a1e939250e 237 variables();
Fo170 0:70a1e939250e 238 // <FIN SCRIPT>
Fo170 0:70a1e939250e 239 // Fin Variable JavaScript
Fo170 0:70a1e939250e 240 printf_send_client("</head><body><center>\r\n");
Fo170 0:70a1e939250e 241 /*sprintf(httpHeader,"</head><body><center>\r\n");
Fo170 0:70a1e939250e 242 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 243
Fo170 0:70a1e939250e 244 sprintf(httpHeader,"<h2>WIZwiki-W7500 - mBED</h2> ( Compiled at : %s and %s )<p>\r\n", __DATE__ , __TIME__);
Fo170 0:70a1e939250e 245 //sprintf(httpHeader,"<h2>WIZwiki-W7500 - mBED</h2><p>\r\n");
Fo170 0:70a1e939250e 246 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 247
Fo170 0:70a1e939250e 248 printf_send_client("<p>(<a href=\"http://www.flotcharts.org/flot/examples/interacting/index.html\">Flot Examples: Interactivity</a>)<p>\r\n");
Fo170 0:70a1e939250e 249 /*sprintf(httpHeader,"<p>(<a href=\"http://www.flotcharts.org/flot/examples/interacting/index.html\">Flot Examples: Interactivity</a>)<p>\r\n");
Fo170 0:70a1e939250e 250 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 251
Fo170 0:70a1e939250e 252 printf_send_client("ETAT :<p>\r\n");
Fo170 0:70a1e939250e 253 /*sprintf(httpHeader,"ETAT :<p>\r\n");
Fo170 0:70a1e939250e 254 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 255
Fo170 0:70a1e939250e 256 sprintf(httpHeader,"IP: %s, MASK: %s, GW: %s<p>\r\n",
Fo170 0:70a1e939250e 257 eth.getIPAddress(), eth.getNetworkMask(), eth.getGateway());
Fo170 0:70a1e939250e 258 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 259
Fo170 0:70a1e939250e 260 //sprintf(httpHeader,"&tilde;A0 :<script>document.write(A0);</script>V<br>\r\n");
Fo170 0:70a1e939250e 261 sprintf(httpHeader,"&tilde;A0 : %3.3fV<br>\r\n", a0_f);
Fo170 0:70a1e939250e 262 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 263
Fo170 0:70a1e939250e 264 //sprintf(httpHeader,"&tilde;A1 :<script>document.write(A1);</script>V<br>\r\n");
Fo170 0:70a1e939250e 265 sprintf(httpHeader,"&tilde;A1 : %3.3fV<br>\r\n", a1_f);
Fo170 0:70a1e939250e 266 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 267
Fo170 0:70a1e939250e 268 //sprintf(httpHeader,"&tilde;A2 :<script>document.write(A2);</script>V<br>\r\n");
Fo170 0:70a1e939250e 269 sprintf(httpHeader,"&tilde;A2 : %3.3fV<br>\r\n", a2_f);
Fo170 0:70a1e939250e 270 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 271
Fo170 0:70a1e939250e 272 //sprintf(httpHeader,"&tilde;A3 :<script>document.write(A3);</script>V<p>\r\n");
Fo170 0:70a1e939250e 273 sprintf(httpHeader,"&tilde;A3 : %3.3fV<br>\r\n", a3_f);
Fo170 0:70a1e939250e 274 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 275
Fo170 0:70a1e939250e 276 sprintf(httpHeader, "Time : %.1f Seconds - Sample : %u<p>\r\n", Seconds, Sample);// diplays the human readable Seconds
Fo170 0:70a1e939250e 277 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 278
Fo170 0:70a1e939250e 279 printf_send_client("<p><script language=\"javascript\" type=\"text/javascript\">WIZwiki_W7500_Interactivity();</script><p>\r\n");
Fo170 0:70a1e939250e 280 /*sprintf(httpHeader,"<p><script language=\"javascript\" type=\"text/javascript\">WIZwiki_W7500_Interactivity();</script><p>\r\n");
Fo170 0:70a1e939250e 281 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 282
Fo170 0:70a1e939250e 283 printf_send_client("<p><a href=\"..\">Root</a>\r\n");
Fo170 0:70a1e939250e 284 /*sprintf(httpHeader,"<p><a href=\"..\">Root</a>\r\n");
Fo170 0:70a1e939250e 285 client.send(httpHeader,strlen(httpHeader));*/
Fo170 0:70a1e939250e 286
Fo170 0:70a1e939250e 287 printf_send_client("</center></body></html>\r\n");
Fo170 0:70a1e939250e 288 /*sprintf(httpHeader,"</center></body></html>\r\n");
Fo170 0:70a1e939250e 289 client.send(httpHeader,strlen(httpHeader)); */
Fo170 0:70a1e939250e 290 }
Fo170 0:70a1e939250e 291
Fo170 0:70a1e939250e 292 //--------------------------------------------
Fo170 0:70a1e939250e 293
Fo170 0:70a1e939250e 294 int main(void)
Fo170 0:70a1e939250e 295 {
Fo170 0:70a1e939250e 296 // initialisation des variables
Fo170 0:70a1e939250e 297 int i;
Fo170 0:70a1e939250e 298
Fo170 0:70a1e939250e 299 for(i = 0 ; i < NB_SAMPLES ; i++)
Fo170 0:70a1e939250e 300 {
Fo170 0:70a1e939250e 301 time_samples[i] = 0;
Fo170 0:70a1e939250e 302 adc_samples[i] = 0.0;
Fo170 0:70a1e939250e 303 }
Fo170 0:70a1e939250e 304 // Init the ticker with the address of the function (add_one_second) to be attached and the interval (1000 ms)
Fo170 0:70a1e939250e 305 time_tic.attach(&add_one_tic, __Time_tic_in_Second__);
Fo170 0:70a1e939250e 306 //--------------
Fo170 0:70a1e939250e 307 ledTick.attach(&ledTickfunc,0.5);
Fo170 0:70a1e939250e 308 // Serial Interface eth;
Fo170 0:70a1e939250e 309 // Serial port configuration (valeurs par defaut) : 9600 baud, 8-bit data, no parity, stop bit
Fo170 0:70a1e939250e 310 uart.baud(9600);
Fo170 0:70a1e939250e 311 uart.format(8, SerialBase::None, 1);
Fo170 0:70a1e939250e 312 uart.printf("Initializing\n");
Fo170 0:70a1e939250e 313 wait(1.0);
Fo170 0:70a1e939250e 314 // Check File System
Fo170 0:70a1e939250e 315 uart.printf("Checking File System\n");
Fo170 0:70a1e939250e 316 DIR *d = opendir("/sd/");
Fo170 0:70a1e939250e 317 if(d != NULL)
Fo170 0:70a1e939250e 318 {
Fo170 0:70a1e939250e 319 uart.printf("SD Card Present\n");
Fo170 0:70a1e939250e 320 }
Fo170 0:70a1e939250e 321 else
Fo170 0:70a1e939250e 322 {
Fo170 0:70a1e939250e 323 uart.printf("SD Card Root Directory Not Found\n");
Fo170 0:70a1e939250e 324 }
Fo170 0:70a1e939250e 325 wait(1.0);
Fo170 0:70a1e939250e 326 // EthernetInterface eth;
Fo170 0:70a1e939250e 327 uart.printf("Initializing Ethernet\n");
Fo170 0:70a1e939250e 328 #if USE_DHCP
Fo170 0:70a1e939250e 329 //eth.init Use DHCP
Fo170 0:70a1e939250e 330 int ret = eth.init((uint8_t*)MAC); // Use DHCP for WIZnetInterface
Fo170 0:70a1e939250e 331 uart.printf("Connecting DHCP\n");
Fo170 0:70a1e939250e 332 #else
Fo170 0:70a1e939250e 333 int ret = eth.init((uint8_t*)MAC,IP,MASK,GATEWAY); //IP,mask,Gateway
Fo170 0:70a1e939250e 334 uart.printf("Connecting (IP,mask,Gateway)\n");
Fo170 0:70a1e939250e 335 #endif
Fo170 0:70a1e939250e 336 wait(1.0);
Fo170 0:70a1e939250e 337 // Check Ethernet Link-Done
Fo170 0:70a1e939250e 338 uart.printf("Check Ethernet Link\r\n");
Fo170 0:70a1e939250e 339
Fo170 0:70a1e939250e 340 if(eth.link() == true)
Fo170 0:70a1e939250e 341 {
Fo170 0:70a1e939250e 342 uart.printf("- Ethernet PHY Link - Done\r\n");
Fo170 0:70a1e939250e 343 //led_r = LED_ON;
Fo170 0:70a1e939250e 344 COLOR(_RED_);
Fo170 0:70a1e939250e 345 }
Fo170 0:70a1e939250e 346 else
Fo170 0:70a1e939250e 347 {
Fo170 0:70a1e939250e 348 uart.printf("- Ethernet PHY Link - Fail\r\n");
Fo170 0:70a1e939250e 349 //led_r = LED_OFF;
Fo170 0:70a1e939250e 350 COLOR(_BLACK_);
Fo170 0:70a1e939250e 351 }
Fo170 0:70a1e939250e 352 wait(1.0);
Fo170 0:70a1e939250e 353 if(!ret)
Fo170 0:70a1e939250e 354 {
Fo170 0:70a1e939250e 355 uart.printf("Initialized, MAC: %s\r\n", eth.getMACAddress());
Fo170 0:70a1e939250e 356 ret = eth.connect();
Fo170 0:70a1e939250e 357
Fo170 0:70a1e939250e 358 if(!ret)
Fo170 0:70a1e939250e 359 {
Fo170 0:70a1e939250e 360 uart.printf("IP: %s, MASK: %s, GW: %s\r\n",
Fo170 0:70a1e939250e 361 eth.getIPAddress(), eth.getNetworkMask(), eth.getGateway());
Fo170 0:70a1e939250e 362 // led_b = LED_ON, led_g = LED_ON;
Fo170 0:70a1e939250e 363 COLOR(_CYAN_);
Fo170 0:70a1e939250e 364 }
Fo170 0:70a1e939250e 365 else
Fo170 0:70a1e939250e 366 {
Fo170 0:70a1e939250e 367 uart.printf("Error ethernet.connect() - ret = %d\r\n", ret);
Fo170 0:70a1e939250e 368 //led_b = LED_OFF;
Fo170 0:70a1e939250e 369 COLOR(_BLUE_);
Fo170 0:70a1e939250e 370 exit(0);
Fo170 0:70a1e939250e 371 }
Fo170 0:70a1e939250e 372 }
Fo170 0:70a1e939250e 373 else
Fo170 0:70a1e939250e 374 {
Fo170 0:70a1e939250e 375 uart.printf("Error ethernet.init() - ret = %d\r\n", ret);
Fo170 0:70a1e939250e 376 //led_b = LED_OFF;
Fo170 0:70a1e939250e 377 COLOR(_BLACK_);
Fo170 0:70a1e939250e 378 exit(0);
Fo170 0:70a1e939250e 379 }
Fo170 0:70a1e939250e 380 wait(1.0);
Fo170 0:70a1e939250e 381 // TCPSocketServer server;
Fo170 0:70a1e939250e 382 server.bind(HTTPD_SERVER_PORT);
Fo170 0:70a1e939250e 383 server.listen();
Fo170 0:70a1e939250e 384 uart.printf("Server Listening\n");
Fo170 0:70a1e939250e 385
Fo170 0:70a1e939250e 386 while(true)
Fo170 0:70a1e939250e 387 {
Fo170 0:70a1e939250e 388 uart.printf("\nWait for new connection...\r\n");
Fo170 0:70a1e939250e 389 server.accept(client);
Fo170 0:70a1e939250e 390 client.set_blocking(false, 1500); // Timeout after (1.5)s
Fo170 0:70a1e939250e 391
Fo170 0:70a1e939250e 392 uart.printf("Connection from: %s\r\n", client.get_address());
Fo170 0:70a1e939250e 393 while(true)
Fo170 0:70a1e939250e 394 {
Fo170 0:70a1e939250e 395 //led_g = LED_ON;
Fo170 0:70a1e939250e 396 COLOR(_GREEN_);
Fo170 0:70a1e939250e 397 int n = client.receive(buffer, sizeof(buffer));
Fo170 0:70a1e939250e 398 if(n <= 0) break;
Fo170 0:70a1e939250e 399 uart.printf("Recieved Data: %d\r\n\r\n%.*s\r\n",n,n,buffer);
Fo170 0:70a1e939250e 400 if(n >= 1024)
Fo170 0:70a1e939250e 401 {
Fo170 0:70a1e939250e 402 sprintf(httpHeader,"HTTP/1.1 413 Request Entity Too Large \r\nContent-Type: text\r\nConnection: Close\r\n\r\n");
Fo170 0:70a1e939250e 403 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 404 client.send(buffer,n);
Fo170 0:70a1e939250e 405 break;
Fo170 0:70a1e939250e 406 }
Fo170 0:70a1e939250e 407 else
Fo170 0:70a1e939250e 408 {
Fo170 0:70a1e939250e 409 buffer[n]=0;
Fo170 0:70a1e939250e 410 }
Fo170 0:70a1e939250e 411 if(!strncmp(buffer, "GET ", 4))
Fo170 0:70a1e939250e 412 {
Fo170 0:70a1e939250e 413 uristr = buffer + 4;
Fo170 0:70a1e939250e 414 eou = strstr(uristr, " ");
Fo170 0:70a1e939250e 415 if(eou == NULL)
Fo170 0:70a1e939250e 416 {
Fo170 0:70a1e939250e 417 sprintf(httpHeader,"HTTP/1.1 400 Bad Request \r\nContent-Type: text\r\nConnection: Close\r\n\r\n");
Fo170 0:70a1e939250e 418 client.send(httpHeader,strlen(httpHeader));
Fo170 0:70a1e939250e 419 client.send(buffer,n);
Fo170 0:70a1e939250e 420 }
Fo170 0:70a1e939250e 421 else
Fo170 0:70a1e939250e 422 {
Fo170 0:70a1e939250e 423 *eou = 0;
Fo170 0:70a1e939250e 424 //get_file(uristr);
Fo170 0:70a1e939250e 425 ETAT();
Fo170 0:70a1e939250e 426 }
Fo170 0:70a1e939250e 427 }
Fo170 0:70a1e939250e 428 }
Fo170 0:70a1e939250e 429 //led_g = LED_OFF;
Fo170 0:70a1e939250e 430 COLOR(_BLACK_);
Fo170 0:70a1e939250e 431 client.close();
Fo170 0:70a1e939250e 432 }
Fo170 0:70a1e939250e 433 }