Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Arduino Networking

You're reading from   Arduino Networking Connect your projects to the Web using the Arduino Ethernet library

Arrow left icon
Product type Paperback
Published in Aug 2014
Publisher
ISBN-13 9781783986866
Length 118 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Marco Schwartz Marco Schwartz
Author Profile Icon Marco Schwartz
Marco Schwartz
Arrow right icon
View More author details
Toc

Controlling the relay remotely

Now, we are going to build our first interesting application using the system we just assembled. We are going to build an Arduino sketch to control the relay from anywhere within your local network. For example, if your computer is connected via Wi-Fi to your router and the Ethernet shield is connected to the same router, you will be able to control the relay via your computer. The advantage of this approach in this section is that even if your Internet connection is down, you will still be able to control the relay.

The application starts by including the correct libraries:

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

We set up the MAC address of the board:

byte mac[] = { 0x90, 0xA2, 0xDA, 0x0E, 0xFE, 0x40 };

We also define a default IP address for the board that will be used if DHCP fails:

IPAddress ip(192,168,1,150);

We then create an instance of the aREST library, which will handle the request that comes to the board:

aREST rest...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime