Book Image

Arduino Networking

By : Marco Schwartz
Book Image

Arduino Networking

By: Marco Schwartz

Overview of this book

Table of Contents (13 chapters)

Chapter 2. Sending Data to a Web Server

In the previous chapter, we made sure that your Arduino Ethernet shield could actually connect to your local network and to the Web. In this chapter, we are going to build on that, and build our first application using the Ethernet shield.

We are going to see in more detail how the Ethernet client works by measuring data from a digital sensor and sending this data to a web server. In this chapter, this web server will be a server running on your own computer.

These will be the major takeaways from this chapter:

  • First, we are going to choose the temperature and humidity sensor that we will also use later in the book. We are also going to install the different software components that are required for this chapter, especially the library to plot data on your computer.

  • Then, we are going to build the Arduino code that will perform measurements and send these measurements to the web server running on your computer.

  • After that, we'll start building the server...