Test Code for OV7670 Camera module. The images are sent over ethernet link.

Dependencies:   EthernetInterface mbed-rtos mbed ov7670

You can find more information in this page: https://mbed.org/users/edodm85/notebook/ov7670-camera-and-ethernet-stream/

Revision:
2:d6b38a4512eb
Parent:
1:0e4d23df43ea
Child:
3:df8de18d7fa9
--- a/main.cpp	Sat Jul 20 16:36:31 2013 +0000
+++ b/main.cpp	Sat Feb 15 15:17:08 2014 +0000
@@ -22,7 +22,10 @@
     led4 = 0;        // Snap status       
       
     //ETHERNET
+    //Static IP
     eth.init(ip, mask, gateway);
+    //DHCP
+    //eth.init();
     eth.connect();
     server.bind(ECHO_SERVER_PORT);
     server.listen(1);