<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://trollmaker.com/feed/rss/commentaires/" />
	<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1</link>
	<language>en</language>
	<description>Random Linux &amp; Electronic Experiments</description>
	<lastBuildDate>Wed, 06 Mar 2013 09:43:00 +0100</lastBuildDate>
	<generator>PluXml</generator>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by PaulB @ wednesday 06 march 2013, 09:43</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362559385-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362559385-1</guid>
		<description>Can I send email with enc28j60 Ethernet Shield V1.1?
Please for some kind of example.</description>
		<pubDate>Wed, 06 Mar 2013 09:43:00 +0100</pubDate>
		<dc:creator>PaulB</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by Dan @ monday 04 march 2013, 01:54</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362358468-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362358468-1</guid>
		<description>Hi guys,
I was looking for a sketch like the one at the link below, but for the ENC28J60 shield.
Can anyone help with this, please ? 
http://arduino.omalleyland.com/2010/08/my-arduino-webserver.html?showComment=1362334577835#c415405553637617558</description>
		<pubDate>Mon, 04 Mar 2013 01:54:00 +0100</pubDate>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by julz @ thursday 28 february 2013, 18:47</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362073621-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1362073621-1</guid>
		<description>dude can u make me an arduino login auth before accessing my arduino web server?thnx in advance man you&amp;#039;re the best!!!</description>
		<pubDate>Thu, 28 Feb 2013 18:47:00 +0100</pubDate>
		<dc:creator>julz</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by sisy @ wednesday 20 february 2013, 17:00</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361376012-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361376012-1</guid>
		<description>Hi! Please help me, I did the stated instruction, but still I can&amp;#039;t access the IP address in my web browser.. What wrong with this? Is it my ethernet shield or it just need some modification? pls pls.. help me to figure out whats the problem! Thank you!</description>
		<pubDate>Wed, 20 Feb 2013 17:00:00 +0100</pubDate>
		<dc:creator>sisy</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by julz @ tuesday 19 february 2013, 23:35</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361313306-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361313306-1</guid>
		<description>thank you mate for the of your code!!! your the maaaaaan!!!</description>
		<pubDate>Tue, 19 Feb 2013 23:35:00 +0100</pubDate>
		<dc:creator>julz</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by Heeviii @ tuesday 19 february 2013, 20:35</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361302556-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1361302556-1</guid>
		<description>Just notised that Safari is sensitive to proper HTML, so you have ti put all
necessary statements in beginnig and not forgetting end of body line.
After taking care of these, my Safari browser is acting normally, no more &amp;quot;Page not found &amp;quot; comments

Otherwise the code is all that old one,

Cheers!



 

// A simple web server that always just tells temperature when working&amp;quot;

#include &amp;quot;etherShield.h&amp;quot;
#include &amp;quot;ETHER_28J60.h&amp;quot;


static uint8_t mac[6] = {0x54, 0x55, 0x58, 0x10, 0x00, 0x24};   // this just needs to be unique for your network, 
                                                                // so unless you have more than one of these boards
                                                                // connected, you should be fine with this value.
                                                           
static uint8_t ip[4] = {xx, xx, xxx, xx};                       // the IP address for your board. Check your home hub
                                                                // to find an IP address not in use and pick that
                                                                // this or 10.0.0.15 are likely formats for an address
                                                                // that will work.

static uint16_t port = 80;                                      // Use port 80 - the standard for HTTP

ETHER_28J60 ethernet;

void setup()
{ 
  ethernet.setup(mac, ip, port);
}

void loop()
{
  if (ethernet.serviceRequest())
   
  {
   
ethernet.print(&amp;quot;&amp;lt;!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.00 TRANSITIONAL//EN&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;html&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;head&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;title&amp;gt;Preview&amp;lt;/title&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;/head&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;body&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;H1&amp;gt;Hello World &amp;lt;/H1&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;BR&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;H2&amp;gt;Time is 20:31&amp;lt;/H2&amp;gt;&amp;quot;);

ethernet.print(&amp;quot;Analog Value: &amp;quot;);
ethernet.print(analogRead(0)); 
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);
ethernet.print(&amp;quot;&amp;lt;hr&amp;gt;&amp;quot;);

ethernet.print(&amp;quot;   &amp;quot;);
 

    ethernet.respond();
        
  }
  
  delay(100);
  
  ethernet.print(&amp;quot;&amp;lt;/body&amp;gt;&amp;quot;);
  
}</description>
		<pubDate>Tue, 19 Feb 2013 20:35:00 +0100</pubDate>
		<dc:creator>Heeviii</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by Schnallnix @ saturday 09 february 2013, 18:16</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1360430213-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1360430213-1</guid>
		<description>Hay,
I used the example for two buttons and want to expand it for 4 or more buttons,

but I am to stupid to understand it and I am not expired in HTML programming.

Is there anybody who could help?

But thanks of course I learned a lot here</description>
		<pubDate>Sat, 09 Feb 2013 18:16:00 +0100</pubDate>
		<dc:creator>Schnallnix</dc:creator>
	</item>
	<item>
		<title>Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Written by tupitochka @ saturday 19 january 2013, 13:44</title> 
		<link>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1358599458-1</link>
		<guid>http://trollmaker.com/article11/arduino-1-0-with-enc28j60-ethernet-shield-v1-1/#c1358599458-1</guid>
		<description>for you controlling a device from outside a local net you must configure you router and provide static-IP from provider (ISP) also you can use dyndns.com</description>
		<pubDate>Sat, 19 Jan 2013 13:44:00 +0100</pubDate>
		<dc:creator>tupitochka</dc:creator>
	</item>
		<title>trollmaker.com - Arduino 1.0 with enc28j60 Ethernet Shield V1.1 - Comments</title> 
</channel>
</rss>