Wednesday, 25 February 2015

FYP2 - Week 4(2)

Result form previous post of SD Card
  • Copy the coding sketch in previous post and paste it into the Arduino IDE. 
  • Change the IP address in the sketch to match the IP address range of your network.
  • Your hardware must be set up as described in previous of this tutorial.
  • Load the sketch to the Arduino and then open a web browser on a computer that is connected to the same network as the Arduino.
  • Surf to the Arduino by typing the IP address of the Arduino into the URL field of the browser, e.g. 192.168.0.2 

The Web Server should display a web page as shown below.





Important Note!
  • If an uninitialized SD card is left in the SD card socket of the shield, it can cause problems with code in the sketch that is accessing the Ethernet chip. This may cause symptoms such as the sketch running once or twice, then hanging up.
  • This is because both the Ethernet chip and the SD card are accessed by the Arduino using the same SPI bus.
  • If the SD card is not being used with an Ethernet application, either remove it from the socket or add the following code to disable the SD card


Tuesday, 24 February 2015

FYP2 - Week 4

Test the SD card in the Ethernet shield

The Arduino Uno board and official Arduino Ethernet shield are used. The Ethernet shield contains the WIZnet W5100 Ethernet chip. To set up the hardware, first plug the Arduino Ethernet shield into the Arduino board and then plug a micro SD card into the SD card socket of the Ethernet shield. Power the Arduino from a USB cable plugged into the host PC computer.

The Arduino, Arduino Ethernet shield and micro SD card are used to make a web server that hosts a web page on the SD card. When a browser requests a web page from the Arduino web server, the Arduino will fetch the web page from the SD card.

Creating the Web Page
Because the web page is to be stored on the SD card, it must first be created using a text editor and then copied to the SD card.

Web Page
Create the following web page in a text editor. When you save the text file, give it the name: index.htm


<!DOCTYPE html>
<html>
    <head>
        <title>Arduino SD Card Web Page</title>
    </head>
    <body>
        <h1>Hello from the Arduino SD Card!</h1>
        <p>A web page from the Arduino SD card server.</p>
    </body>
</html>


Nothing new here, it is the same as the web page from the first web server in this tutorial with just the text changed. Test this web page by opening it in a web browser
.
Copying the Web Page
You will need a micro SD card slot on your computer or a card reader that is capable of reading and writing a micro SD card.

Insert the micro SD card into the slot on the computer or card reader that is plugged into the computer and copy the index.htm file to the micro SD card.

Now plug the SD card into the micro SD card slot on the Ethernet shield.


SD Card Web Server

Hardware
You should now have the micro SD card with web page copied to it inserted into the card slot on the Arduino Ethernet shield. The Ethernet shield should be plugged into a compatible Arduino and into an Ethernet cable connected to your network. The Arduino / Ethernet shield should be powered from a USB cable.

Arduino Sketch
The Arduino sketch that fetches the web page from the SD card and sends it to the browser is shown below.


#include <SPI.h>
#include <Ethernet.h>
#include <SD.h>

// MAC address from Ethernet shield sticker under board
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 0, 2); // IP address, may need to change depending on network
EthernetServer server(80);  // create a server at port 80

File webFile;

void setup()
{
    Ethernet.begin(mac, ip);  // initialize Ethernet device
    server.begin();           // start to listen for clients
    Serial.begin(9600);       // for debugging
   
    // initialize SD card
    Serial.println("Initializing SD card...");
    if (!SD.begin(4)) {
        Serial.println("ERROR - SD card initialization failed!");
        return;    // init failed
    }
    Serial.println("SUCCESS - SD card initialized.");
    // check for index.htm file
    if (!SD.exists("index.htm")) {
        Serial.println("ERROR - Can't find index.htm file!");
        return;  // can't find index file
    }
    Serial.println("SUCCESS - Found index.htm file.");
}

void loop()
{
    EthernetClient client = server.available();  // try to get client

    if (client) {  // got client?
        boolean currentLineIsBlank = true;
        while (client.connected()) {
            if (client.available()) {   // client data available to read
                char c = client.read(); // read 1 byte (character) from client
                // last line of client request is blank and ends with \n
                // respond to client only after last line received
                if (c == '\n' && currentLineIsBlank) {
                    // send a standard http response header
                    client.println("HTTP/1.1 200 OK");
                    client.println("Content-Type: text/html");
                    client.println("Connection: close");
                    client.println();
                    // send web page
                    webFile = SD.open("index.htm");        // open web page file
                    if (webFile) {
                        while(webFile.available()) {
                            client.write(webFile.read()); // send web page to client
                        }
                        webFile.close();
                    }
                    break;
                }
                // every line of text received from the client ends with \r\n
                if (c == '\n') {
                    // last character on line of received text
                    // starting new line with next character read
                    currentLineIsBlank = true;
                }
                else if (c != '\r') {
                    // a text character was received from client
                    currentLineIsBlank = false;
                }
            } // end if (client.available())
        } // end while (client.connected())
        delay(1);      // give the web browser time to receive the data
        client.stop(); // close the connection
    } // end if (client)
}


Using the Sketch
Copy the above sketch and paste it into the Arduino IDE. Load the sketch to the Arduino and then surf to the IP address set in the sketch with your web browser. The web page that you created should be displayed in the browser as it is served up by the Arduino SD card web server.


Friday, 20 February 2015

FYP2 - Week 3

WEB SERVER EXAMPLE

The WebServer example sketch found in the Arduino software (found under File → Examples → Ethernet → WebServer – already covered in the article Plugging In and Testing the Arduino Ethernet Shield) actually does not conform to the full HTML page structure, but instead places text directly between the opening and closing <html> tags.


In the WebServer example, each line is ended with a line break so that the next line is shown below the previous line in the browser. The following image shows the output of the WebServer sketch in the browser and the HTML code used to produce the output text.


Arduino uno attach with DFRduino Ethernet Shiled

The Web Server and the coding 

Router as a wireless


Friday, 13 February 2015

FYP2 - Week 2 (2)

This function is to plug the Arduino Ethernet shield into an Arduino Uno, then connect it to an Ethernet cable and finally test whether the Ethernet shield is working or not. These are the first things that people need to do after buying an Arduino Ethernet shield for the first time.






But, in this case, I use DFRduino Ethernet Shield. This new version Arduino Ethernet shield which is DFRduino Ethernet Shield V2 supports Mega both 1280 and 2560 and also supports SD card read/write as well.  The V2 Ethernet Shield is fully compatible with Ardunio Ethernet Shield. People can do exactly the same thing as the original one and more affordable price.

Tuesday, 10 February 2015

FYP2 - Week 2

ARDUINO ETHERNET SHIELD

This shows how to set up an Arduino with Ethernet shield as a web server. The web servers in this are used to serve up web pages that can be accessed from a web browser running on any computer connected to the same network as the Arduino.

Some of the Arduino web server pages allow access to the Arduino hardware – this allows hardware to be controlled (e.g. switching on and off an LED from the web page) and monitored (e.g. reading the state of a switch and displaying it on a web page).

This is required to build a web server including all the technology such as HTTP, HTML, CSS, JavaScript, etc. It starts with the very basics of hosting a simple web page on the Arduino and advances step-by-step from there.

Hardware Components
The hardware required for following this series of tutorials is:
  • An Arduino board such as the Arduino Uno
  • An Arduino Ethernet shield
  • An Ethernet cable, wired straight for connecting to your network router
  • A USB cable for powering and programming the Arduino
  • A micro SD card, e.g. a 2Gb card that is SPI compatible – only required for some of the servers
  • A computer with a micro SD card slot or a card reader with a micro SD card slot – only required for SD card servers

Hardware Setup
Before starting:

  1. Plug the Ethernet shield into the Arduino Uno R3, connect it to the network and test it.
  2. Test the SD card in the Ethernet shield. 

Sunday, 8 February 2015

FYP2 - Week 1(2)

Picture below is among the coding for enroll the fingerprint that i had been try in a few weeks

Among the coding in Arduino and it success in uploading, it means the coding is right and suitable in Arduino and fingerprint 









In this picture above is the serial monitor after done uploading the coding and success. Now, the fingerprint can be use but first enroll first to identify the identity of each person thumbprint. After image of fingerprint is taken twice for better result, the image of fingerprint will be stored. But also sometimes the fingerprint image can be also may not recognized it. For example, your index finger is scratched or injured, or even dry and dirty. For solution, you can add or delete additional fingerprint at any time.

Saturday, 7 February 2015

FYP2 - Week 1


In this week, I had been testing the Arduino and fingerprint to design the circuit in breadboard 



Design in breadboard before upload in arduino 
The circuit in breadboard
After upload