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

Displaying the results

We are now going to use the data that was logged in the database and display it on a graph for more convenience. For this task, we are going to use a JavaScript library called flot, which is already included in the code for this chapter. This library provides nice functions to plot data on a web page, and also allows you to plot data in real time, so you will see the graph being automatically updated as more data comes in.

Everything will happen inside an HTML file called plot.html. We will only see the most important parts of the code here. Please refer to the GitHub repository of the chapter to get the complete files. Inside this file, you first have to include the files required for the flot library:

<script src="flot/jquery.js"></script>
<script src="flot/jquery.flot.js"></script>
<script src="flot/jquery.flot.time.js"></script>

You also need an element in the HTML page that will host the graph. This...

You have been reading a chapter from
Arduino Networking
Published in: Aug 2014
Publisher:
ISBN-13: 9781783986866
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