Microduino ENC Network (8)

来自Microduino Wikipedia
跳转至: 导航搜索
Language English

Objective

This tutorial will show you how to control two leds with a more stylish webpage thanks to some images

Equipment

  • Other equipment
    • USB cable

Images

First, you need to understand what happens when, in a webpage, there are references to external resources (images, javascript…:

  • user’s browser contacts the web server and asks for HTML page;
  • browser parses the page and finds external resources;
  • browser asks for each resource to the web server.

When the web server answers, it tells the browser (in response header) the type of the file it’s sending using the MIME standard. Here’s an example (sniffed using Fiddler) about a PNG image:

Fiddler嗅探.jpg

Microduino’s sketch should be able to:

  • read browser‘s request (saved in Ethernet::buffer);
  • identify the resource the browser is requesting (HTML page, images…);
  • create an header with the correct Content-Type;
  • send header and resource to the browser.

Binary Resources

Images are binary files: in our simple example we should be able to store them in our sketch, in the form of byte arrays. I found a very useful utility that helps with this conversion: bin2h.

Conversion’s result is a text file:

Bin2h.jpg

To save microcontroller’s RAM memory, we store the images in the program memory using the directive PROGMEM:

Imagebincode.jpg

Schematic

MicroduinoENC8原理图.jpg
  • Microduino-ENC28J60
  • Microduino-RJ45
  • Microduino-Core
  • Microduino-FT232R

Stack all modules and then connect the ethernet cable, as follows:

Program

https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_ENC/ENCnetworkeight

Debug

Step 1:Download the EtherCard library and copy to your libraries fold of IDE, then restart IDE. https://github.com/jcw/ethercard

Step 2:Explain the program:

//My sketch parses browser’s request and – if it’s asking for one of the two images – calls the method to send it back to the browser:

       if(strstr((char *)Ethernet::buffer + pos, "GET /led_off.png") != 0)
         send_png_image(led_off, sizeof(led_off));
       else if(strstr((char *)Ethernet::buffer + pos, "GET /led_on.png") != 0)
         send_png_image(led_on, sizeof(led_on));

//This method prepares the response with the correct header and calls emit_raw_p() method to add image’s bytes to the response; finally it sends the full response back to the browser using httpServerReply method.


 BufferFiller bfill = ether.tcpOffset();
 bfill.emit_p(PSTR("HTTP/1.0 200 OK\r\n"
   "Content-Type: image/png\r\n\r\n"));
 bfill.emit_raw_p(png_image, image_size);
 ether.httpServerReply(bfill.position());
 }

//If, instead, browser’s request contains ?LEDx, led’s status is changed and the html page is created with the correct images depending on leds’ statuses:

   if(strstr((char *)Ethernet::buffer + pos, "GET /?LED1") != 0) {
     led1Status = !led1Status;
     digitalWrite(LED1PIN, led1Status);
   }


Step 3: Connect the bulb, as follws:

MicroduinoENC8连接图.jpg

Step 4:Copile the code and download it.

Step 5:Use the browser to access the Microduino's IP, then click button, observe the bulb's state.

Result

Access the Microduino's IP address, click the button, browser will request the page and add the ?LEDx suffix: Microduino will change the LED state and the button's color.

Video

http://v.youku.com/v_show/id_XNzA0NDEzNjUy.html