[Arduino] FTP Server for using WIZ550 ioShield-A on Arduino

This project describes that how to use FTP server using the WIZ550 ioShield. The FTP is used to transfer the files between the computers on the network.
ORIGINAL POST
By DongEun Koak
components
Hardware Components
Arduino mega
X 1
WIZ550 ioShield-
X 1
Software Apps and online services
Arduino
details

Hardware

  • Arduino Due, WIZ550 ioShield-A, Sd card, LAN Cable

1                      2

The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of computer files between a client and server on a computer network.

FTP is built on a client-server model architecture and uses separate control and data connections between the client and the server. FTP users may authenticate themselves with a clear-text sign-in protocol, normally in the form of a username and password, but can connect anonymously if the server is configured to allow it. For secure transmission that protects the username and password, and encrypts the content, FTP is often secured with SSL/TLS (FTPS). SSH File Transfer Protocol (SFTP) is sometimes also used instead; it is technologically different.

 

Software

  1. For using Arduino Due, You must use more 1.5.x version of Arduino IDE

 

3

 

2. Download Arduino Ethernet Driver for using WIZ550io
  1. Download Arduino Ethernet Driver
  2. Copy the ethernet driver to Arduino Directory ( arduino-1.5.7/libraries/ )
    • Change the Ethernet directory to Ethernet_old
    • Copy the download driver to arduino-1.5.7/liibraries/

4

 

3. Caution: For using WIZ550io, you have to modify the Arduino-1.5.7/libraries/utility/w5100.h as below

5

3. Download Arduino FTP Server for using WIZ550io
  1. Download FTP Server Library (It is written by me)
  2. Modify SD library
    1. Change member variable of SDClass to public on arduino-1.5.7/libraries/SD/src/SD/SD.h

 

6

3. Open the WIZ550io_FTPServer_UsingSDCard.ino and then upload to Arduino Due Board.

7

4. Run this application using serial monitor

4. Run FTP Client using app of smartphone

8       9

5. Log Message on Serial Monitor

10

 

 

Source: http://kaizen8501.blogspot.in/2014/09/arduino-ftp-server-for-using-wiz550.html

Hardware

  • Arduino Due, WIZ550 ioShield-A, Sd card, LAN Cable

1                      2

The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of computer files between a client and server on a computer network.

FTP is built on a client-server model architecture and uses separate control and data connections between the client and the server. FTP users may authenticate themselves with a clear-text sign-in protocol, normally in the form of a username and password, but can connect anonymously if the server is configured to allow it. For secure transmission that protects the username and password, and encrypts the content, FTP is often secured with SSL/TLS (FTPS). SSH File Transfer Protocol (SFTP) is sometimes also used instead; it is technologically different.

 

Software

  1. For using Arduino Due, You must use more 1.5.x version of Arduino IDE

 

3

 

2. Download Arduino Ethernet Driver for using WIZ550io
  1. Download Arduino Ethernet Driver
  2. Copy the ethernet driver to Arduino Directory ( arduino-1.5.7/libraries/ )
    • Change the Ethernet directory to Ethernet_old
    • Copy the download driver to arduino-1.5.7/liibraries/

4

 

3. Caution: For using WIZ550io, you have to modify the Arduino-1.5.7/libraries/utility/w5100.h as below

5

3. Download Arduino FTP Server for using WIZ550io
  1. Download FTP Server Library (It is written by me)
  2. Modify SD library
    1. Change member variable of SDClass to public on arduino-1.5.7/libraries/SD/src/SD/SD.h

 

6

3. Open the WIZ550io_FTPServer_UsingSDCard.ino and then upload to Arduino Due Board.

7

4. Run this application using serial monitor

4. Run FTP Client using app of smartphone

8       9

5. Log Message on Serial Monitor

10

 

 

Source: http://kaizen8501.blogspot.in/2014/09/arduino-ftp-server-for-using-wiz550.html

COMMENTS

Please Login to comment
  Subscribe  
Notify of