WebServer for WIZwiki-W7500 Network Information LED controller Analog value Monitoring image load

Dependencies:   SDFileSystem WIZnetInterface httpServer_with_Ethernt mbed

Fork of httpServer-WIZwiki-W7500 by WIZnet

This is HTTP server example program for WIZwiki-W7500.

In this example, you can get Network Information and control LED and... Monitoring Analog value!!

Sample html pages and image are needed. So download samples.

  • index.html
  • net_info.html
  • dio_page.html
  • ain_page.html
  • wiznet_logo.png

Web server html files

This example use SD card. So copy html and image files to SD card. If not WIZwiki-W7500 platform, copy html and image files to local filesystem.

Revision:
23:17bcb0c6105c
Parent:
21:a5e91b90d7a3
Child:
24:64dfb6c4994b
--- a/main.cpp	Mon Nov 16 23:56:27 2015 +0000
+++ b/main.cpp	Thu Feb 18 00:36:57 2016 +0000
@@ -4,13 +4,13 @@
 #include "HTTPServer.h"
 #include "SDFileSystem.h"
 
-#ifdef TARGET_WIZWIKI_W7500
+#if defined(TARGET_WIZWIKI_W7500)||defined(TARGET_WIZWIKI_W7500P)
     //Choose one of file system.
     SDFileSystem local(SD_MOSI, SD_MISO, SD_CLK, SD_SEL, "local");//PB_3, PB_2, PB_1, PB_0
     //LocalFileSystem local("local");
 #endif
 
-#ifdef TARGET_WIZWIKI_W7500
+#if defined(TARGET_WIZWIKI_W7500)||defined(TARGET_WIZWIKI_W7500P)
     uint8_t mac_addr[6] = {0x00, 0x08, 0xDC, 0x00, 0x01, 0x02};
 #endif
 
@@ -28,7 +28,7 @@
     HTTPFsRequestHandler::mount("/local/", "/");
     svr.addHandler<HTTPFsRequestHandler>("/");
 
-#ifdef TARGET_WIZWIKI_W7500
+#if defined(TARGET_WIZWIKI_W7500)||defined(TARGET_WIZWIKI_W7500P)
     
     #ifdef DHCP
         eth.init(mac_addr); //Use DHCP