How to Make a $15 Web Server for IoT Applications

If you have an embedded project that requires some GPIOs, and Ethernet connectivity, you now have a few choices of low cost low boards such as the Raspberry Pi with Broadcom ARM11 SoC for $35 + shipping,  Texas Instruments Connected LaunchPad with an ARM Cortex M4 MCU for $20 including shipping, and today I’ve given a try at a solution to run an HTTP server with an Arduino Leonardo clone connected to ENC28J60 Ethernet module that together cost about $15 including shipping. This Ethernet module has been around for a while and is well supported, I just never took the time to give it a try before.

ENC28J60 Ethernet Module
ENC28J60 Ethernet Module

I’ve purchased ENC28J60 module on eBay for $3.46 and connected it via SPI to an Arduino Leonardo clone I acquired as part of a kit via Indiegogo for $12. The kit is not available for purchase outside the crowdfunding campaign, but you can also find Arduino Leonardo clones with a micro USB cable for just under $10 in Aliexpress. Besides the two boards, you’ll need a micro USB cable and a few prototyping cables.

Arduino_Ethernet_Cables

I’ve mostly followed the instructions provided on Nathan Hein’s blog who used an Arduino Uno instead of an Arduino Leonardo.

Connecting ENC28J60 to Arduino

There are 6 out of 10 pins that need to be connected on ENC’s header. I’ve used the following connection table between the two boards. pinout diagram

EtherCard Arduino Leonardo
VCC 3.3V
GND GND
SCK SCK – Pin 9 on ICSP header
SO MISO – Pin 11 on ICSP header
SI MOSI – Pin 10 on ICSP header
CS Pin 8

The pin numbers on the ICSP header are based on this pin diagram.

Optionally you can also mount the Ethernet module on top or below your Arduino board thanks to the module’s Arduino compatible mounting holes.

Arduino_Leonardo_Ethernet_ENC28J60_Assembled

Running a Web server in Arduino

Now that we’re done with the connection, it’s time to load a sketch to try it out. You’ll find to run Arduino IDE 1.0.x in Windows, Linux or Mac OS X. I’m using Arduino IDE 1.0.5 in Ubuntu 14.04.

You’ll need to install a library that supports ENC28J60, and there are several, but EtherCard appears to be the most used.

Here’s what I had to to do install it:

  1. Download EtherCard library
  2. Uncompress ethercard-master.zip, and rename ethercard-master directory to ethercard or the Arduino IDE will refuse to import the library with the following error: “Library names must contain basic letters and numbers. (ASCII only and no spaces,  and it cannot start with a number)
  3. In the Arduino IDE, select Sketch->Add file and select the  ethercard directory
  4. You should now see Ethercard in the list of library, contributed section via Sketch->Import Library.

The library comes with 19 samples, that you can access via File->Examples->Ethercard in the Arduino IDE.

Let’s try backSoon sample which should act as a web server and display a “service unavailable” web page. This is the complete source code for this sample:


The code defaults to DHCP,  but you can also change this to static IP and define your own board and gateway IP addresses. The MAC address is also hard-coded in the source, and if you plan to have a few you’ll need to store and read the MAC in the EEPROM, but I’ll leave it as it is for this test.

It’s now time to connect the Arduino board to your computer via the micro USB to USB cable in order to power and program the board. Also connect an Ethernet cable to ENC module.

Click on the upload button (or press Ctrl+U) to load and run the program on the board. In theory, you can also run the Serial monitor in the Arduino IDE, and after a few seconds see network parameters similar to:


But for some reasons, my serial connection is unstable, and I did not manage to get it to work. However, I used Wireshark to check for DHCP messages and find the IP address. You should also be able to find the IP address of the board via your router settings.

The IP address was 192.168.0.111 and I could access the web page via Firefox.

EtherCard_Web_Server_TestThat’s the error message hard-coded in the source, and it means the Ethernet connection and web server are working. Success!

I’ve used charger doctor to have a look at the power consumption.  I could measure 0.12 to 0.15A (0.6 to 0.75 Watts) whether the connection was mostly idle or I used ping -f. If I disconnect the ENC28J60 module, the current to power the Arduino board drops to 0.02 to 0.03 mA (0.1 to 0.15 W). Some people have reported ENC28J60 may lose connection after a few hours due to overheating and a small heatsink may be needed.

If you want to learn more about ENC28J60 and Arduino, you may want to visit Luca Dentella’s blog with many related tutorials including one which explains how to control a relay via a web page optimized for smartphones.

Share this:
FacebookTwitterHacker NewsSlashdotRedditLinkedInPinterestFlipboardMeWeLineEmailShare

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus

21 Replies to “How to Make a $15 Web Server for IoT Applications”

  1. What about Hi-Link HLK-RM04? It’s 12 to 15 buck on usual Chinese sites and have wifi, 2 Ethernet ports (although you need to provide your own RJ45 connector-transformer combo), some GPIOs, and best of all – a full-blown Linux on it (also supported by OpenWRT distro) – same money, not at all much higher power consumption but waaay more power.

  2. This AsiaRF board is better than the HiLink one. It is set up for use as a module. Support for it is in OpenWRT.
    http://www.asiarf.com/Smallest-Tiny-Ralink-802-11n-Wireless-AP-Router-Module-Board-AWM002-product-view-375.html
    There is a starter kit with carrier eval board for $45. But once you get going the modules are under $10.

    This is another option that is supported in OpenWRT
    http://www.asiarf.com/IoT-Home-Automation-Sever-WiFi-11n-MT7620-High-Speed-Multi-Functions-Router-Board-AP2620-P-product-view-388.html

    All of those pin headers make it easy to connect IOT things.

    It almost impossible to beat using these single chip Wifi SOC solutions when it comes to building an IOT bridge.

  3. IMO UIPEthernet is better library for ENC28J60 as it is compatible with stock Arduino Ethernet library.

  4. That’s even less expensive than the TI CC3000!

    But what part of the TCP/IP stack are built-in to the ENC28J60? I know it has a integrated MAC and PHY, but how much of the web server must be implemented by the user software?

    I haven’t done any socket programming, but if it’s simple enough, I’d love to be able to control and view status via a webpage for a cheapy 8-bit pic!

  5. @Jon Smirl
    put an enclosure, power supply and antenna etc the price will go up I assume, plus, you need get FCC approval for that too? looks interesting, but the webpage did not tell much to encourage a purchase.
    I actually registered and logged in, single unit is $15, the site was not actively updated either

  6. @ben that is all done in microchip libraries so essentially not much. But I still think the launchpad is the best value with integrated programmer/debugger.

  7. If your Leonardo clone is not 3.3Volt IO, the ENC28J60 module will be damaged or unstable.
    I think you might need to add the level shifter.

  8. @xxiao

    Email paul@asiarf.com with questions. This is an OEM manufacturer, not a retail store. Not really meant for sales of one unit except for eval. $15 is for Q1 sample. In Q1000 the module are well below $10. Somebody should use this module as the basis for making a retail hobbyist board.

    The module has FCC but you need to use the antenna he supplies to make it valid. I think is costs under $1. If you pick your own antenna you need to redo FCC. He can help with that for about $1,000.

    Note that these modules run full Linux. You can log into a command prompt and run all of your normal networking apps. Openwrt even runs a web server on them. I know of no other solution for getting a 802.11n, Ethernet and Linux all running for sub-$10. cnx – profile on these would make a good article.

    The modules are similar to what is on an Arduino Yun but $10 instead of $100.

  9. @xxiao

    TL-WR703N is what we started on before switching to module. Pins are the problem on TL-WR703N.

    Module exposes – USB (480Mb), two UART, SPI, I2C, GPIO, PWM, I2S, PCM, two Ethernet

    The MT7620 board exposes a very hard to find PCIe connection. Those are almost always on boards over $100. Main use for PCIe is attaching 802.11ac. 11ac is too fast for USB2. I think he has a 11ac module for that board.

  10. If OpenWRT can be ported to a ~=$10 router, that would be very cool 🙂 Shame there’s no USB though…

  11. Why not just run Linux on a secondhand or new Android TV box with power supply? Providing you can get Linux for your model?

Leave a Reply

Your email address will not be published. Required fields are marked *

Khadas VIM4 SBC
Khadas VIM4 SBC