SlideShare a Scribd company logo
Arduino and the real time web



Linux Conf AU – Arduino Miniconf
16 January, 2012


@ajfisher
Slides, notes & code...




@ajfisher
slideshare.net/andrewjfisher
github.com/ajfisher
Arduino
  ❤
 Web
Arduino networking
  introduction




Photo (CC): Flickr rfranklinaz
Arduino networking resources
Arduino IDE
Examples/Ethernet/Web Client & Web Server


Arduino documentation
arduino.cc/it/Reference/Ethernet
Sensor serving doesn't 
have to be plain          @ajfisher @superhighfives
Simple web serving
Arduino web server examples
Examples/Ethernet/Web Server
ArduServer
www.arduserver.com
Web interaction using an arduino
ReSTduino
github.com/jjg/RESTduino
webduino
github.com/sirleech/Webduino
duino.js
github.com/ecto/duino
Generic network pulser
gist.github.com/1290670
Why is real time web
interaction important 
for an arduino?
World domination
  by arduino




Photo (CC): Flickr marcus ramberg
@kevinrohling 's web sockets controlled robot
Difficult?




Photo (CC): Flickr Vrogy
Photo (CC): Flickr InertiaCreeps
Web sockets resources
W3C web sockets spec
dev.w3.org/html5/websockets/
Wikipedia
en.wikipedia.org/wiki/WebSocket
Socket.IO (JS Library)
github.com/LearnBoost/socket.io-spec
Django Socket.IO (Django app)
github.com/stephenmcd/django-socketio
Real time architecture




                 Web
               Sockets
                Server
Web server
from django_socketio import events, broadcast,
broadcast_channel

@events.on_subscribe(channel="channel-name")
def channel_subscription(request, socket, context,
channel):
    #do some stuff related to a subscription

@events.on_message(channel="^channel-name")
def message_processor(request, socket, context,
message):
    message = message[0]
    foo = message["foo"]
    bar = message["bar"]
    #do some processing

   socket.send({"value":some_value})
   socket.broadcast({"foo": foo, "value": some_value})
Web browser client
var room = 'channel-name';
var socket;

$(function() {
    socket = new io.Socket();
    socket.connect();

      socket.on('connect', function() {
          socket.subscribe(room);    });

      socket.on('message', function(data) {
          console.log(data.value);    });

      socket.send({room: room, foo: foo, bar: bar});
});
Arduino client
#include <WebSocketClient.h>
// defs
WebSocketClient client(server, "/socket.io/websocket/",
80);

void setup() {
  Ethernet.begin(mac, ip);
  delay(1000);
  if(client.connect()) {
    client.setDataArrivedDelegate(dataArrived);
    client.subscribe("channel-name");
    delay(1000);
  } else { while(1) {} }
}

void dataArrived(WebSocketClient client, String data) {
  Serial.println("Data Arrived: " + data);
}
Arduino client
void loop() {
  client.monitor();

    // send a message
    String message = "{"room":"channel-name",
                        ""foo": bar }";

    client.send(message);
    delay(1000);
}
Example – real time sensor data 
  display

  Stream live temperature data from two
  distinct sensors on the network to a web
  based display that overlays the data




Full code available at https://github.com/ajfisher/realtime-temperature
Arduino sensor
void loop() {

    char _s[8];
    String message = "{"room":"tempsensor", ";
    message += ""sensor":";
    message += sensor_id;
    message += ", "value":";
    message += dtostrf(get_temp(0), 8, 3, _s);
    message += "}";

    client.send(message);
    delay(100);
}
Web server
from django_socketio import events, broadcast_channel

#other views

@events.on_message(channel="^tempsensor")
def get_temperature(request, socket, context,
message):
    message = message[0]
    value = message["value"]
    sensor_id = message["sensor"]
    socket.broadcast_channel(
        {"sensor": sensor_id, "value":value},
        channel="tempvalues"
    )
Discussion
$(function() {
    socket = new io.Socket();
    socket.connect();
    socket.on('connect', function() {
        socket.subscribe('tempvalues');

            CreateTimeline();
      });

      socket.on('message', function(data) {
          tempdata[data.sensor].append(
              new Date().getTime(), data.value );
      });
});
Static view of data that was presented locally live
Other applications
Scale out sensor network
Web controlled installations
M2M
Things to try out
Pusher
pusher.com
Socket IO
socket.io
Arduino Web Sockets Clients
github.com/krohling/ArduinoWebsocketClient
github.com/krohling/ArduinoPusherClient
Arduino and the real time web




@ajfisher
slideshare.net/andrewjfisher
github.com/ajfisher

More Related Content

PPTX
Intracapsular Cataract extraction
PPTX
Refractive error
PPTX
Refractive Errors
PPTX
Common eye diseases
PPTX
Competency based medical education
PPT
Standard of care / Standard of Practice / Clinical Guideline/ Clinical Pathway
PPT
Body fluid analysis
PPTX
Eye injuries and illnesses- Third year mbbs Ophthalmology
Intracapsular Cataract extraction
Refractive error
Refractive Errors
Common eye diseases
Competency based medical education
Standard of care / Standard of Practice / Clinical Guideline/ Clinical Pathway
Body fluid analysis
Eye injuries and illnesses- Third year mbbs Ophthalmology

What's hot (12)

PDF
Clinical pathology Notes
PPTX
Disorders of the eye
PPT
Ptosis or drooping eyelid
PPTX
AETCOM ppt by prof satya 2020
PPTX
JOURNAL CLUB PRESENTATION
PPTX
Options for correction of refractive error
PPTX
Fundoscopy ppt 2012
PPTX
Patient Safety and Clinical Laboratories
PPTX
National programme for control of blindness eye bank
PPTX
keratometry.pptx
PPTX
Basic fundoscopy
Clinical pathology Notes
Disorders of the eye
Ptosis or drooping eyelid
AETCOM ppt by prof satya 2020
JOURNAL CLUB PRESENTATION
Options for correction of refractive error
Fundoscopy ppt 2012
Patient Safety and Clinical Laboratories
National programme for control of blindness eye bank
keratometry.pptx
Basic fundoscopy
Ad

Viewers also liked (6)

ODP
Web Facilitated Play in the Real World
PDF
Arduino basics
PDF
AngularJS Basics
PDF
AngularJS Introduction
PDF
node.js and the AR.Drone: building a real-time dashboard using socket.io
PDF
Advanced programming with #nodecopter
Web Facilitated Play in the Real World
Arduino basics
AngularJS Basics
AngularJS Introduction
node.js and the AR.Drone: building a real-time dashboard using socket.io
Advanced programming with #nodecopter
Ad

Similar to Arduino and the real time web (20)

PPTX
Building the Internet of Things with Thingsquare and Contiki - day 1, part 3
PPT
Server/Client Remote platform logger.
PPTX
5-Tut3_Networking_with_Python.pptx good intro
PDF
[Forward4 Webinar 2016] Building IoT Prototypes w/ Raspberry Pi
PDF
Making things that work with us - Distill
PDF
Creating an Arduino Web Server from scratch hardware and software
PDF
SDARPiBot - VLES'16
PPTX
Final Presentation - Edan&Itzik
PDF
programmer avec Arduino
PPTX
Serial Data from Arduino to Raspberry Pi to MySQL using CoAP Protocol
PDF
Arduino: interruptor de encendido controlado por Internet
PDF
IoT Implementation of Sensor Data Acquisition in Surveillance Applications - ...
PDF
IoT Implementation of Sensor Data Acquisition in Surveillance Applications - ...
PDF
HTML5 WebSocket for the Real-Time Web and the Internet of Things
DOCX
Report for weather pi
PDF
Embedded Web server using TCP/IP protocol
PDF
6.Web Servers
PDF
Comunicando nuestras apps con el mundo exterior
PDF
avr-web-server
PPTX
Introduction to Node MCU
Building the Internet of Things with Thingsquare and Contiki - day 1, part 3
Server/Client Remote platform logger.
5-Tut3_Networking_with_Python.pptx good intro
[Forward4 Webinar 2016] Building IoT Prototypes w/ Raspberry Pi
Making things that work with us - Distill
Creating an Arduino Web Server from scratch hardware and software
SDARPiBot - VLES'16
Final Presentation - Edan&Itzik
programmer avec Arduino
Serial Data from Arduino to Raspberry Pi to MySQL using CoAP Protocol
Arduino: interruptor de encendido controlado por Internet
IoT Implementation of Sensor Data Acquisition in Surveillance Applications - ...
IoT Implementation of Sensor Data Acquisition in Surveillance Applications - ...
HTML5 WebSocket for the Real-Time Web and the Internet of Things
Report for weather pi
Embedded Web server using TCP/IP protocol
6.Web Servers
Comunicando nuestras apps con el mundo exterior
avr-web-server
Introduction to Node MCU

More from Andrew Fisher (15)

PDF
Datatium - using data as a material for contextually responsive design.
PDF
Droids, java script and web connected hardware
PDF
Building Droids with JavaScript
PPTX
A Device API Safari - Web Directions Code 2014
PDF
How well are you delivering your experience?
PDF
Designing a Moving Experience
PDF
The Wonderful-Amazing-Orientation-Motion-Sensormatic Machine
PPTX
Responsive content and user context
PPTX
Datatium - radiation free responsive experiences
PPTX
Getting Touchy Feely with the Web
PDF
How the web is going physical
PPT
Device API - now with added fun
PPT
ad:tech Melbourne - Mobile and social strategies for retailers
ODP
The future of Australian mobile
ODP
Cloud Sourcing the Business
Datatium - using data as a material for contextually responsive design.
Droids, java script and web connected hardware
Building Droids with JavaScript
A Device API Safari - Web Directions Code 2014
How well are you delivering your experience?
Designing a Moving Experience
The Wonderful-Amazing-Orientation-Motion-Sensormatic Machine
Responsive content and user context
Datatium - radiation free responsive experiences
Getting Touchy Feely with the Web
How the web is going physical
Device API - now with added fun
ad:tech Melbourne - Mobile and social strategies for retailers
The future of Australian mobile
Cloud Sourcing the Business

Recently uploaded (20)

PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
Teaching material agriculture food technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
KodekX | Application Modernization Development
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
NewMind AI Weekly Chronicles - August'25 Week I
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Chapter 3 Spatial Domain Image Processing.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Big Data Technologies - Introduction.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
20250228 LYD VKU AI Blended-Learning.pptx
Teaching material agriculture food technology
Building Integrated photovoltaic BIPV_UPV.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
KodekX | Application Modernization Development
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Empathic Computing: Creating Shared Understanding
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
The AUB Centre for AI in Media Proposal.docx
Encapsulation_ Review paper, used for researhc scholars
Dropbox Q2 2025 Financial Results & Investor Presentation
Per capita expenditure prediction using model stacking based on satellite ima...

Arduino and the real time web

Editor's Notes

  • #2: Thanks Jon – Good afternoon everyone and thanks for coming along for at the end of the day. My session is going to be a little different from some of the others this afternoon as it&apos;s a little more software and network oriented than the others.
  • #3: Housekeeping wise – my presso will be up at slideshare with all my notes and all my code is in github so don&apos;t feel like you need to write much of this down. It&apos;s the end of what&apos;s been a great day so sit back, relax and just think about how you can play around with some of what I&apos;m going to show you this afternoon.
  • #4: So before we get started let&apos;s get a sense of knowledge level. Who has done some sort of web development involving server side coding? Okay who has played with Arduino&apos;s ethernet library? Arduino Ethernet Server? Arduino Ethernet Client? Okay so there&apos;s a few that haven&apos;t used the Ethernet library at all
  • #5: Very quickly, arduino&apos;s can connect to the network with an ethernet shield or using an etherten or similar like this. If you haven&apos;t played with the library think of it like a networked version of a serial connection you can pass data back and forth and your arduino can be either a server or a client. http://www.flickr.com/photos/88548643@N00/139617711/
  • #6: To get up to speed with this I&apos;d thoroughly working through and digesting the various examples in the Arduino IDE and trawling all the API documentation on the site. Don&apos;t worry too much though the principles and architecture I&apos;ll be talking about are just as important as the code so you&apos;ll follow along even if you haven&apos;t played with it much.
  • #7: There are some great ways to connect an arduino to the web and you might find some of these useful for your particular needs before we get into realtime. .
  • #8: If all you want to do is get some data to present onto a single web page nice and simply then I can suggest you check out the examples in the Arduino Networking library. If you want something a little more robust but still quite simple check our ArduServer These are a bit limited in terms of interaction but they are quick to produce
  • #9: If you&apos;re looking to control IO pins using URLs in a more restful manner then check out restduino or webduino. These are more fully featured web servers – Webduino is getting pretty clever now. These types of applications generally give you a lot of URLs to play with, often customisable, you can serve images, turn pins on or off and read state and serve content as HTML or JSON.
  • #10: So there&apos;s clearly lots of ways to use an arduino with the web already. Given that, why would I want to hook it up to the real time web? Surely using one of these methods already should be sufficient.
  • #11: Quite simply it&apos;s so you can create your robot army to take over the world that you control via the web browser on your mobile phone. http://www.flickr.com/photos/marcusramberg/430115937/
  • #12: Realistically they probably look a bit more like this – but conquest will happen – just really slowly. Actually in the traditional web model we face some limitations when we start playing with arduinos. http://kevinrohling.wordpress.com/2011/09/14/world-domination-using-arduinos-and-websockets/
  • #13: Arduinos don&apos;t scale well with concurrent users. If you try and build a web app on your arduino you end up with thousands of lines of code in your program. Likewise processing thousands of lines of HTML can be error prone and result in buffer overruns and crashes. Many projects offload this processing to another machine and then communicate via serial but clearly that&apos;s going to affect your mobility. So to deal with this we have to get a method that works consistently knowing these limitations. http://www.flickr.com/photos/vrogy/514733529
  • #14: So the architecture for interaction with the web in real time is a little more complex than the stock request response method and at the heart of how I do this is to use Web Sockets. Who here is familiar with how web sockets work? Very briefly for those that aren&apos;t – web sockets are a full duplex bidirectional connection over a single TCP connection. In practice this usually means a client – typically a web browser connects to a server and holds open a connection that data is streamed back and forwards through http://www.flickr.com/photos/inertiacreeps/1414845543
  • #15: There&apos;s some good resources for how this all works and I won&apos;t explain the detail now but suffice to say Web Sockets allows us to hold a single connection open between the client and server and stream data back and forth in real time which provides an efficient method of communication over HTTP without the overhead of lots of handshaking and header passing for every request.
  • #16: There are three main components First is the web socket server which provides application logic – it could service other functions as well such as authentication, hooking to messaging systems or other web application components or a database. The next part is the Web Browser Client – this provides the UI component and is typically a mix of JS and HTML. Finally is the client that sits on the arduino that can processes messages coming in. Web scokets are generally set up as a pub / sub model on channels so you push data to a channel and listen for messages which you can action.
  • #17: To show you how this works then in some code. I&apos;m a python guy so I use Django Socket IO for this but the same principles hold for things like Node and what not as well. You can see here I have some code that sets up a channel that clients can subscribe to. After that I then have some code that executes when it receives message events which process the message and do something with it. I can send messages back to the originating client or I can broadcast messages to everyone on a channel as well.
  • #18: Here&apos;s the web browser code. I have some JS here that is connecting to the channel and you can see here I have code that sends a message and receives one back. Web sockets typically use JSON in order to send messages back and forth so that makes it very suitable for use in web pages and JSON plays nicely with obviously Node and Python which is why these two stacks tend to get used for Web Sockets most often.
  • #19: This then is the arduino client. This is an adaptation of the Arduino Web Sockets library by Kevin Rohling to work with Socket IO. It&apos;s worth noting that this version of the library now only works with Arduino 1.0. Again I subscribe to a channel like the others. Note a couple of the pauses I do to let everything have time to catch up. Once I&apos;m subscribed I create a delegate function that handles my messages which in this case is just going to print a message
  • #20: So in my main loop I then call monitor to just check if a message has come in and in this instance I&apos;m going to just send a message off to the server every second on the channel.
  • #21: Now we understand the building blocks let&apos;s put them together in an example. We&apos;re going to take data from two independent sensors on two arduinos and get it to come together in real time to a display that you&apos;ll all be able to view on your web browsers if you join my network.
  • #22: Let&apos;s start with the arduino code which is pretty simple. I have two ether tens connected to the network. Attached to them are simply a temperature sensor using a LM335 sensor. I won&apos;t go through the temperature code as it&apos;s irrelevant but here you can see my loop just calls the web sockets send command with the current state of the temperature and the node id every second. Note that I haven&apos;t calibrated these sensors either as it&apos;s just a quick and dirty example.
  • #23: Now on the server, we take the message sent to the channel and we process it to grab the node ID and the temperature value. This is then broadcast in a package to any client that&apos;s subscribed to listen on a broadcast channel. The reason we do this as well is to stop an echo chamber from developing where you flood the sender back with echoes of it&apos;s own messages. It&apos;s just a nice way to limit the amount of data you&apos;re pushing around.
  • #24: On the browser side we then process the message as it comes in and hand that data off to a graphing library called smoothie which makes pretty charts from web socket streamed data. Pretty straight forward huh?
  • #25: Now let&apos;s see this working – assuming my code works. You can actually see this if you jump on my network and then hit this IP address. It should work with just about all modern browsers and works okay on iPhone and newish Android devices Switch to screen &lt;RIGHT&gt; So you can see here the two charts from the two sensors. If I hold one to heat it up you can see it goes up, then down as I let it go. You get the average between them below as well in the chart below. So this is a pretty basic example but you can see how this can start to work – hopefully your brains are starting to shift into project applications now.
  • #26: So you now you understand the principles involved there&apos;s lots of applications for this. You could scale a sensor mesh quite easily using this set up or else you could flip it and use a web browser as the controller or input which then gets piped to one or many arduinos to react in some fashion – this is how you&apos;d make your mobile phone browser controlled robot army. Similarly for M2M there are some good options here as because of the pub/sub model a subscriber for data could be an arduino, a web service or some other application, so could a publisher. Using the same stack across the whole network creates new opportunities for data to move around. So you can see it&apos;s possible to create some interesting interactions using the real time aspects of modern web browsers - all with some web tech and an arduino and it&apos;s getting a lot easier to do it.
  • #27: Now if you don&apos;t want to muck around with setting up Node or Django servers there are some other options available. There&apos;s a site called pusher.com that provides web sockets infrastructure. There&apos;s a pusher port of the web sockets library as well so that makes it very simple. It is a paid service if you want more than 20 connections or 100 thousand messages per day though. Also Socket.IO is the library I use which is a very good web sockets library with a lot of fall backs for older browsers and handles things like different media types very well also.
  • #28: So thanks very much for your attention at the end of the day - I think we have time for probably a question or two. I&apos;m around after this so if you want to grab me please feel free. My details are all up here too so get in touch to talk further about your project or application.