SlideShare una empresa de Scribd logo
1 de 50
Descargar para leer sin conexión
Let’s Get Physical: 
I/O Programming with Java on 
the Raspberry Pi using Pi4J 
Robert Savage 
The Pi4J Project 
Project: 
http://pi4j.com 
Blog: 
http://savagehomeautomation.com 
#Devoxx #pi4j @savageautomate | @pi4j
Agenda 
Pi4J Overview 
Pi4J Introductory Concepts 
Smart Devices & IoT 
DIY Smart Devices 
MQTT 
#Devoxx #pi4j @savageautomate | @pi4j
What is Pi4J 
Pi4J is an open-source project providing a library for Java 
programmers to interact with the low-level I/O capabilities 
on the Raspberry Pi platform. 
• Open Source Project 
• Low Level I/O Library 
• Object Oriented API 
• Event Based 
• Java & C (JNI + Native) www.pi4j.com! 
#Devoxx #pi4j @savageautomate | @pi4j
Low Level I/O Interfaces 
Digital Interfaces 
• GPIO General Purpose Input Output 
• PWM Pulse Width Modulation 
Data Interfaces 
• UART, SERIAL Universal Asynchronous Receiver/Transmitter 
• SPI Serial Peripheral Interface 
• I²C Inter-Integrated Circuit 
Analog Interfaces * 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO 
• Input or Output 
• Digital States 
• HIGH ~ 3.3 VDC 
• LOW ~ 0 VDC 
• Models 
• A & B = ~21 GPIO 
• B+ = 28 GPIO 
• Compute Module = 46 GPIO 
(images from raspberrypi.org) 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Digital States 
GPIO 
HIGH (+3VDC) 
GPIO 
LOW (0 VDC) 
3.3 VDC 
0 VDC 
#Devoxx #pi4j @savageautomate | @pi4j
Pi4J GPIO Pin Addressing 
Visit pi4.com for a detailed pin addressing diagram! 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Outputs 
GPIO Outputs can be used to control things 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Output Circuit 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Output Circuit 
Active-High Relay Board! 
12 VDC " 
Strobe" 
Light! 
12 VDC 
Illuminated " 
Switch! 
12 VDC" 
Power Source! 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Output Example 
// 
create 
GPIO 
controller 
final 
GpioController 
gpio 
= 
GpioFactory.getInstance(); 
// 
create 
a 
GPIO 
output 
final 
GpioPinDigitalOutput 
output 
= 
gpio.provisionDigitalOutputPin( 
RaspiPin.GPIO_12, 
PinState.LOW 
); 
! 
// 
control 
GPIO 
output 
pin 
output.high(); 
output.low(); 
output.toggle(); 
// 
invert 
current 
state 
output.pulse(1000); 
// 
set 
state 
for 
a 
limited 
duration 
#Devoxx #pi4j @savageautomate | @pi4j
Demo 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Inputs 
GPIO Inputs can be 
used to “sense” things 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Circuit 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Reference 
•GPIO inputs require a “reference” voltage. 
•Without a reference, a GPIO pin can “float” 
•The Raspberry Pi includes internal PULL-UP and 
PULL-DOWN resistor settings that can be 
configured via Pi4J. 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Reference 
PULL-DOWN 
Resistance provides a reference (bias) to 
GROUND (0 VDC). If your circuit expects to 
provide +3.3VDC to signal the GPIO pin HIGH, 
then you need a PULL-DOWN reference. 
PULL-UP 
Resistance provides a reference (bias) to 
+3.3 VDC. If your circuit expects to provide 
GROUND to signal the GPIO pin LOW, then 
you need a PULL-UP reference. 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Circuit 
Alternatively, you can build the PULL-UP or PULL-DOWN 
reference in the hardware circuit. 
The circuit below demonstrates a PULL-UP resistor at R1. 
This circuit signals the GPIO 
input pin to LOW when the 
switch closes the circuit and a 
path to GROUND is complete. 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Example 
// 
create 
GPIO 
controller 
final 
GpioController 
gpio 
= 
GpioFactory.getInstance(); 
! 
// 
create 
a 
GPIO 
output 
final 
GpioPinDigitalInput 
input 
= 
gpio.provisionDigitalInputPin( 
RaspiPin.GPIO_02, 
PinPullResistance.PULL_DOWN); 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Input Listener 
// 
create 
event 
listener 
for 
GPIO 
input 
pin 
input.addListener((GpioPinListenerDigital) 
Java 8 
Lambda 
(GpioPinDigitalStateChangeEvent 
event) 
-­‐> 
{ 
! 
// 
set 
output 
state 
to 
match 
the 
input 
state 
output.setState(event.getState()); 
! 
}); 
#Devoxx #pi4j @savageautomate | @pi4j
Demo 
#Devoxx #pi4j @savageautomate | @pi4j
Pi4J Component API 
• The component APIs provides an abstraction layer from 
the hardware I/O layer. 
• This allows hardware design/circuitry to change with 
*less* impact to your implementation code. 
• For example, a RELAY could be controlled from GPIO, 
RS232, SPI, or I2C. You program defines the RELAY impl 
up front based on the hardware interface, but the rest of 
your program logic works against the RELAY component 
#Devoxx #pi4j @savageautomate | @pi4j
Pi4J Component API 
• Keypad 
• Light / LED 
• Dimmable Light 
• LCD 
• Power Controller 
• Relay 
• Momentary Switch 
• Toggle Switch 
• Analog Sensor 
• Distance Sensor 
• Motion Sensor 
• Temperature Sensor 
#Devoxx #pi4j @savageautomate | @pi4j
GPIO Components Example 
! 
// 
create 
LED 
component 
final 
Light 
light 
= 
new 
GpioLightComponent(output); 
! 
// 
usage 
example 
light.on(); 
(or) 
light.off(); 
! 
// 
create 
momentary 
switch 
component 
final 
MomentarySwitch 
ms 
= 
new 
GpioMomentarySwitchComponent( 
input, 
PinState.LOW, 
// 
“OFF” 
pin 
state 
PinState.HIGH); 
// 
“ON” 
pin 
state 
#Devoxx #pi4j @savageautomate | @pi4j
Demo 
#Devoxx #pi4j @savageautomate | @pi4j
Smart Devices / Internet of Things 
“A smart device is an electronic device, generally connected to 
other devices or networks via different protocols such as 
Bluetooth, NFC, WiFi, 3G, etc., that can operate to some extent 
interactively and autonomously. It is widely believed that these 
types of devices will outnumber any other forms of smart 
computing and communication in a very short time, in part, 
acting as a useful enabler for the Internet of Things. “ 
(reference: http://en.wikipedia.org/wiki/Smart_device) 
#Devoxx #pi4j @savageautomate | @pi4j
Smart Devices / Internet of Things 
• Network/Internet Accessible (Connected) 
• Autonomous Behavior 
• Interactive Capability 
• Notifications 
• Control 
#Devoxx #pi4j @savageautomate | @pi4j
Create A “Smart” Home 
• Recently moved into a new home. 
• I want to automate the subsystems 
in the home and make it a “smart” 
home. 
• I want to remotely control and 
monitor my home. 
#Devoxx #pi4j @savageautomate | @pi4j
Off The Shelf Smart Devices 
• Lots of emerging IoT Devices 
• Proprietary Hardware, Software/Apps & Protocols 
• Limited Interconnectivity or Interoperability 
#Devoxx #pi4j @savageautomate | @pi4j
D.I.Y. Smart Devices 
• Using Raspberry Pi + Java + Pi4J 
• Augment existing “dumb” devices and 
sensors to create new interactive 
capability and autonomous 
intelligence. 
• With simple GPIO and a little 
circuitry you can create all kinds of 
“Smart Devices”. 
Pi4J 
#Devoxx #pi4j @savageautomate | @pi4j
Basement Flood Alarm: 
• Take a water level sensor and instrument it to add 
intelligent monitoring and notification capability 
Pi4J 
Notifications 
Control 
other 
devices 
Water Level Sensor Remotely 
Monitor 
#Devoxx #pi4j @savageautomate | @pi4j
HVAC Alarm: 
• Take a HVAC moisture sensor and extend it to add 
intelligent monitoring and notification capability 
Pi4J 
Notifications 
Control 
other 
devices 
Remotely 
Monitor 
HVAC Condensate Leak Detector 
(Moisture Detector) 
#Devoxx #pi4j @savageautomate | @pi4j
Mail Notification: 
• Instrument a mailbox to get notified when mail arrives. 
Pi4J 
Notifications 
Control 
other 
devices 
Remotely 
Monitor 
Magnetic Door Sensors 
#Devoxx #pi4j @savageautomate | @pi4j
Driveway Alarm: 
• Add a sensor to driveway to get notified when someone 
approaches the house. 
Pi4J 
Notifications 
Control 
other 
devices 
Infrared Beam Sensors 
#Devoxx #pi4j @savageautomate | @pi4j
Garage Door Opener: 
• Remote control and monitoring of garage door 
• Auto-close if left open 
Garage Door Opener 
Door Sensor Pi4J 
Notifications 
Timer 
Remotely monitor 
and control 
#Devoxx #pi4j @savageautomate | @pi4j
Sprinkler System 
• Remotely control, configure and schedule the system. 
• Skip watering schedules if raining or if rain is forecasted 
Pi4J 
Sprinkler Controller 
Rain Sensor 
Schedule 
Notifications 
Weather Forecasts 
Remote Control 
and Monitoring 
#Devoxx #pi4j @savageautomate | @pi4j
Security System 
• Remote control and monitoring of the system 
• Activate other devices based on the state of the system 
Pi4J 
Security System 
Notifications 
Remote 
Control 
and 
Monitoring 
#Devoxx #pi4j @savageautomate | @pi4j
HVAC System 
• Interface with HVAC thermostat to remotely monitor and 
control the HVAC system. 
Pi4J 
Thermostat 
Notifications 
Remote 
Control 
and 
Monitoring 
#Devoxx #pi4j @savageautomate | @pi4j
Let’s Build a Proof of Concept Demo 
• Driveway Alerts 
• Flood Alerts 
Pi4J 
• Mailbox Notifications 
• HVAC System Alerts 
#Devoxx #pi4j @savageautomate | @pi4j
Demo 
#Devoxx #pi4j @savageautomate | @pi4j
What About Connectivity? 
• How do we aggregate monitored data? 
• How do we share information between sensors and 
devices to make intelligent automation decisions? 
• How do we access data and control these “smart” 
devices remotely? 
Basement Attic Mailbox Garage 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT 
Basement 
Attic 
Mailbox 
Garage 
MQTT 
BROKER 
MQTT Client 
MQTT Client 
MQTT Client 
MQTT Client 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT 
Desktop 
Tablet 
Web Server 
Mobile 
MQTT 
BROKER 
MQTT Client 
MQTT Client 
MQTT Client 
MQTT Client 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT Overview 
• MQTT == “Message Queuing Telemetry Transport” 
• M2M connectivity protocol 
• Lightweight Communications 
• Small Code Footprint 
• Open Standards Based 
• Asynchronous Messaging 
• Emerging protocol competing to be an IoT “standard” 
protocol 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT Features 
• Publish / Subscribe Messaging Transport (topics) 
• Last Will & Testament 
• QOS (Quality of Service) 
• Message Persistence 
• Supports Binary Data (Payloads) 
• TCP Based 
• Security (SSL/TLS) 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT Topics 
• Publishers, Subscribers & Broker 
(images from eclipse.org) 
#Devoxx #pi4j @savageautomate | @pi4j
MQTT Software 
• Mosquito Broker (Server) 
http://www.mosquitto.org/ 
! 
• Eclipse Paho (Client) 
http://www.eclipse.org/paho/ 
! 
• MQTT.Fx 
http://mqttfx.jfx4ee.org/ 
by Jens Deters (@Jerady) 
#Devoxx #pi4j @savageautomate | @pi4j
Demo 
#Devoxx #pi4j @savageautomate | @pi4j
2015 Goals 
• Start creating DIY “smart” devices using Raspberry Pi, Pi4J, 
and Java. 
• Create a blog article for each project and publish the wiring 
diagrams, source code, and materials listing. 
• Implement these DIY smart devices throughout my home 
and create a “smart” home. 
• Aggregate the information from these connected smart 
devices to start creating an intelligent and automated home 
#Devoxx #pi4j @savageautomate | @pi4j
Questions 
#Devoxx #pi4j @savageautomate | @pi4j
Savage Home Automation Blog The Pi4J Project 
pi4j.com 
savagehomeautomation.com 
@savageautomate @pi4j 
Sides & source code available now at http://www.savagehomeautomation.com/devoxx 
#Devoxx #pi4j @savageautomate | @pi4j

Más contenido relacionado

La actualidad más candente

02 Raspberry Pi GPIO Interface on Node-RED (Some correction)
02 Raspberry Pi GPIO Interface on Node-RED (Some correction)02 Raspberry Pi GPIO Interface on Node-RED (Some correction)
02 Raspberry Pi GPIO Interface on Node-RED (Some correction)Mr.Nukoon Phimsen
 
Con3187 Creating Industrial Middleware with Java ME and Single-Board Computers
Con3187 Creating Industrial Middleware with Java ME and Single-Board ComputersCon3187 Creating Industrial Middleware with Java ME and Single-Board Computers
Con3187 Creating Industrial Middleware with Java ME and Single-Board ComputersJulio Palma Vázquez
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitSulamita Garcia
 
Hackathon Taiwan 5th : Arduino 101
Hackathon Taiwan  5th : Arduino 101 Hackathon Taiwan  5th : Arduino 101
Hackathon Taiwan 5th : Arduino 101 twunishen
 
Interacting with Intel Edison
Interacting with Intel EdisonInteracting with Intel Edison
Interacting with Intel EdisonFITC
 
Artificial Neural Networks on a Tic Tac Toe console application
Artificial Neural Networks on a Tic Tac Toe console applicationArtificial Neural Networks on a Tic Tac Toe console application
Artificial Neural Networks on a Tic Tac Toe console applicationEduardo Gulias Davis
 
Introduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlIntroduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlPradip Bhandari
 
PyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_AyanPyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_AyanAyan Pahwa
 
Building your own RC Car with Raspberry Pi
Building your own RC Car with Raspberry PiBuilding your own RC Car with Raspberry Pi
Building your own RC Car with Raspberry PiJeff Prestes
 
Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Dobrica Pavlinušić
 
[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218CAVEDU Education
 
Python for IoT, A return of experience
Python for IoT, A return of experiencePython for IoT, A return of experience
Python for IoT, A return of experienceAlexandre Abadie
 
Getting Started with Embedded Python: MicroPython and CircuitPython
Getting Started with Embedded Python: MicroPython and CircuitPythonGetting Started with Embedded Python: MicroPython and CircuitPython
Getting Started with Embedded Python: MicroPython and CircuitPythonAyan Pahwa
 
Raspberry Pi and Amateur Radio
Raspberry Pi and Amateur RadioRaspberry Pi and Amateur Radio
Raspberry Pi and Amateur RadioKevin Hooke
 
Android Things Linux Day 2017
Android Things Linux Day 2017 Android Things Linux Day 2017
Android Things Linux Day 2017 Stefano Sanna
 
Raspberry pi tutorial
Raspberry pi tutorialRaspberry pi tutorial
Raspberry pi tutorialImad Rhali
 
Open Source Home Automation with LinkSprite.IO
Open Source Home Automation with LinkSprite.IOOpen Source Home Automation with LinkSprite.IO
Open Source Home Automation with LinkSprite.IOJingfeng Liu
 
IOT Talking to Webserver - how to
IOT Talking to Webserver - how to IOT Talking to Webserver - how to
IOT Talking to Webserver - how to Indraneel Ganguli
 
Advanced view of projects raspberry pi list raspberry pi projects
Advanced view of projects raspberry pi list   raspberry pi projectsAdvanced view of projects raspberry pi list   raspberry pi projects
Advanced view of projects raspberry pi list raspberry pi projectsWiseNaeem
 

La actualidad más candente (20)

02 Raspberry Pi GPIO Interface on Node-RED (Some correction)
02 Raspberry Pi GPIO Interface on Node-RED (Some correction)02 Raspberry Pi GPIO Interface on Node-RED (Some correction)
02 Raspberry Pi GPIO Interface on Node-RED (Some correction)
 
Con3187 Creating Industrial Middleware with Java ME and Single-Board Computers
Con3187 Creating Industrial Middleware with Java ME and Single-Board ComputersCon3187 Creating Industrial Middleware with Java ME and Single-Board Computers
Con3187 Creating Industrial Middleware with Java ME and Single-Board Computers
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
 
Hackathon Taiwan 5th : Arduino 101
Hackathon Taiwan  5th : Arduino 101 Hackathon Taiwan  5th : Arduino 101
Hackathon Taiwan 5th : Arduino 101
 
Interacting with Intel Edison
Interacting with Intel EdisonInteracting with Intel Edison
Interacting with Intel Edison
 
Artificial Neural Networks on a Tic Tac Toe console application
Artificial Neural Networks on a Tic Tac Toe console applicationArtificial Neural Networks on a Tic Tac Toe console application
Artificial Neural Networks on a Tic Tac Toe console application
 
Introduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlIntroduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin Control
 
PyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_AyanPyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_Ayan
 
Building your own RC Car with Raspberry Pi
Building your own RC Car with Raspberry PiBuilding your own RC Car with Raspberry Pi
Building your own RC Car with Raspberry Pi
 
Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !
 
[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218
 
Python for IoT, A return of experience
Python for IoT, A return of experiencePython for IoT, A return of experience
Python for IoT, A return of experience
 
Getting Started with Embedded Python: MicroPython and CircuitPython
Getting Started with Embedded Python: MicroPython and CircuitPythonGetting Started with Embedded Python: MicroPython and CircuitPython
Getting Started with Embedded Python: MicroPython and CircuitPython
 
Raspberry Pi and Amateur Radio
Raspberry Pi and Amateur RadioRaspberry Pi and Amateur Radio
Raspberry Pi and Amateur Radio
 
Android Things Linux Day 2017
Android Things Linux Day 2017 Android Things Linux Day 2017
Android Things Linux Day 2017
 
Raspberry pi tutorial
Raspberry pi tutorialRaspberry pi tutorial
Raspberry pi tutorial
 
Pi Is For Python
Pi Is For PythonPi Is For Python
Pi Is For Python
 
Open Source Home Automation with LinkSprite.IO
Open Source Home Automation with LinkSprite.IOOpen Source Home Automation with LinkSprite.IO
Open Source Home Automation with LinkSprite.IO
 
IOT Talking to Webserver - how to
IOT Talking to Webserver - how to IOT Talking to Webserver - how to
IOT Talking to Webserver - how to
 
Advanced view of projects raspberry pi list raspberry pi projects
Advanced view of projects raspberry pi list   raspberry pi projectsAdvanced view of projects raspberry pi list   raspberry pi projects
Advanced view of projects raspberry pi list raspberry pi projects
 

Similar a DEVOXX Let's Get Physical: I/O Programming with Java on the Raspberry Pi using Pi4J

Java Webinar #9: “Raspberry Pi Platform for Java Programmers”
Java Webinar #9: “Raspberry Pi Platform for Java Programmers”Java Webinar #9: “Raspberry Pi Platform for Java Programmers”
Java Webinar #9: “Raspberry Pi Platform for Java Programmers”GlobalLogic Ukraine
 
Raspberry PI Based Home Appliances Control System using Microcontroller
Raspberry PI Based Home Appliances Control System using MicrocontrollerRaspberry PI Based Home Appliances Control System using Microcontroller
Raspberry PI Based Home Appliances Control System using Microcontrollerijtsrd
 
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...Hackito Ergo Sum
 
Io t basic-exercises
Io t basic-exercisesIo t basic-exercises
Io t basic-exercisesFermin Galan
 
Internet of Things With PHP
Internet of Things With PHPInternet of Things With PHP
Internet of Things With PHPAdam Englander
 
Using Python for IoT: a return of experience, Alexandre Abadie
Using Python for IoT: a return of experience, Alexandre AbadieUsing Python for IoT: a return of experience, Alexandre Abadie
Using Python for IoT: a return of experience, Alexandre AbadiePôle Systematic Paris-Region
 
FIWARE IoT Proposal & Community
FIWARE IoT Proposal & CommunityFIWARE IoT Proposal & Community
FIWARE IoT Proposal & CommunityFIWARE
 
IoT from java perspective
IoT from java perspectiveIoT from java perspective
IoT from java perspectiveDmytro Panin
 
REP.01 PROJ-FX01 Smart Home RP-v2
REP.01 PROJ-FX01 Smart Home RP-v2REP.01 PROJ-FX01 Smart Home RP-v2
REP.01 PROJ-FX01 Smart Home RP-v2Ricardo Pereira
 
From the internet of things to the web of things course
From the internet of things to the web of things courseFrom the internet of things to the web of things course
From the internet of things to the web of things courseDominique Guinard
 
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс....NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...NETFest
 
Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Amarjeetsingh Thakur
 
Build a Java and Raspberry Pi weather station
Build a Java and Raspberry Pi weather station Build a Java and Raspberry Pi weather station
Build a Java and Raspberry Pi weather station Marco Pirruccio
 
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotely
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotelyPharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotely
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotelyESUG
 
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICON
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICONOSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICON
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICONjochen.hiller
 
IThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsIThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsSimon Su
 
Swift hardware hacking @ try! Swift
Swift hardware hacking @ try! SwiftSwift hardware hacking @ try! Swift
Swift hardware hacking @ try! SwiftSally Shepard
 
IntrotoSmartBuildingsFinalProject
IntrotoSmartBuildingsFinalProjectIntrotoSmartBuildingsFinalProject
IntrotoSmartBuildingsFinalProjectNicholas Parisi
 

Similar a DEVOXX Let's Get Physical: I/O Programming with Java on the Raspberry Pi using Pi4J (20)

Java Webinar #9: “Raspberry Pi Platform for Java Programmers”
Java Webinar #9: “Raspberry Pi Platform for Java Programmers”Java Webinar #9: “Raspberry Pi Platform for Java Programmers”
Java Webinar #9: “Raspberry Pi Platform for Java Programmers”
 
Raspberry PI Based Home Appliances Control System using Microcontroller
Raspberry PI Based Home Appliances Control System using MicrocontrollerRaspberry PI Based Home Appliances Control System using Microcontroller
Raspberry PI Based Home Appliances Control System using Microcontroller
 
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
 
Io t basic-exercises
Io t basic-exercisesIo t basic-exercises
Io t basic-exercises
 
Uvais
Uvais Uvais
Uvais
 
Internet of Things With PHP
Internet of Things With PHPInternet of Things With PHP
Internet of Things With PHP
 
Using Python for IoT: a return of experience, Alexandre Abadie
Using Python for IoT: a return of experience, Alexandre AbadieUsing Python for IoT: a return of experience, Alexandre Abadie
Using Python for IoT: a return of experience, Alexandre Abadie
 
FIWARE IoT Proposal & Community
FIWARE IoT Proposal & CommunityFIWARE IoT Proposal & Community
FIWARE IoT Proposal & Community
 
IoT from java perspective
IoT from java perspectiveIoT from java perspective
IoT from java perspective
 
REP.01 PROJ-FX01 Smart Home RP-v2
REP.01 PROJ-FX01 Smart Home RP-v2REP.01 PROJ-FX01 Smart Home RP-v2
REP.01 PROJ-FX01 Smart Home RP-v2
 
From the internet of things to the web of things course
From the internet of things to the web of things courseFrom the internet of things to the web of things course
From the internet of things to the web of things course
 
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс....NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...
.NET Fest 2018. Андрей Тарарака. Как порулить грузовиком в Австралии, находяс...
 
Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)
 
Build a Java and Raspberry Pi weather station
Build a Java and Raspberry Pi weather station Build a Java and Raspberry Pi weather station
Build a Java and Raspberry Pi weather station
 
PHARO IOT
PHARO IOTPHARO IOT
PHARO IOT
 
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotely
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotelyPharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotely
Pharo IoT: Using Pharo to playing with GPIOs and sensors on IoT devices remotely
 
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICON
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICONOSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICON
OSGi Users' Forum Germany - Meeting Darmstadt 2014-04-14 - QIVICON
 
IThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOpsIThome DevOps Summit - IoT、docker與DevOps
IThome DevOps Summit - IoT、docker與DevOps
 
Swift hardware hacking @ try! Swift
Swift hardware hacking @ try! SwiftSwift hardware hacking @ try! Swift
Swift hardware hacking @ try! Swift
 
IntrotoSmartBuildingsFinalProject
IntrotoSmartBuildingsFinalProjectIntrotoSmartBuildingsFinalProject
IntrotoSmartBuildingsFinalProject
 

Último

2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shardsChristopher Curtin
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?Alexandre Beguel
 
Effectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorEffectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorTier1 app
 
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...OnePlan Solutions
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalLionel Briand
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsChristian Birchler
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxRTS corp
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLionel Briand
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...Bert Jan Schrijver
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxRTS corp
 
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdfAndrey Devyatkin
 
Zer0con 2024 final share short version.pdf
Zer0con 2024 final share short version.pdfZer0con 2024 final share short version.pdf
Zer0con 2024 final share short version.pdfmaor17
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptxVinzoCenzo
 
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldRoberto Pérez Alcolea
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesKrzysztofKkol1
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogueitservices996
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecturerahul_net
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITmanoharjgpsolutions
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonApplitools
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 

Último (20)

2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards
 
SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?SAM Training Session - How to use EXCEL ?
SAM Training Session - How to use EXCEL ?
 
Effectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryErrorEffectively Troubleshoot 9 Types of OutOfMemoryError
Effectively Troubleshoot 9 Types of OutOfMemoryError
 
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive Goal
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and Repair
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
 
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf
2024-04-09 - From Complexity to Clarity - AWS Summit AMS.pdf
 
Zer0con 2024 final share short version.pdf
Zer0con 2024 final share short version.pdfZer0con 2024 final share short version.pdf
Zer0con 2024 final share short version.pdf
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptx
 
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogue
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecture
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh IT
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 

DEVOXX Let's Get Physical: I/O Programming with Java on the Raspberry Pi using Pi4J

  • 1. Let’s Get Physical: I/O Programming with Java on the Raspberry Pi using Pi4J Robert Savage The Pi4J Project Project: http://pi4j.com Blog: http://savagehomeautomation.com #Devoxx #pi4j @savageautomate | @pi4j
  • 2. Agenda Pi4J Overview Pi4J Introductory Concepts Smart Devices & IoT DIY Smart Devices MQTT #Devoxx #pi4j @savageautomate | @pi4j
  • 3. What is Pi4J Pi4J is an open-source project providing a library for Java programmers to interact with the low-level I/O capabilities on the Raspberry Pi platform. • Open Source Project • Low Level I/O Library • Object Oriented API • Event Based • Java & C (JNI + Native) www.pi4j.com! #Devoxx #pi4j @savageautomate | @pi4j
  • 4. Low Level I/O Interfaces Digital Interfaces • GPIO General Purpose Input Output • PWM Pulse Width Modulation Data Interfaces • UART, SERIAL Universal Asynchronous Receiver/Transmitter • SPI Serial Peripheral Interface • I²C Inter-Integrated Circuit Analog Interfaces * #Devoxx #pi4j @savageautomate | @pi4j
  • 5. GPIO • Input or Output • Digital States • HIGH ~ 3.3 VDC • LOW ~ 0 VDC • Models • A & B = ~21 GPIO • B+ = 28 GPIO • Compute Module = 46 GPIO (images from raspberrypi.org) #Devoxx #pi4j @savageautomate | @pi4j
  • 6. GPIO Digital States GPIO HIGH (+3VDC) GPIO LOW (0 VDC) 3.3 VDC 0 VDC #Devoxx #pi4j @savageautomate | @pi4j
  • 7. Pi4J GPIO Pin Addressing Visit pi4.com for a detailed pin addressing diagram! #Devoxx #pi4j @savageautomate | @pi4j
  • 8. GPIO Outputs GPIO Outputs can be used to control things #Devoxx #pi4j @savageautomate | @pi4j
  • 9. GPIO Output Circuit #Devoxx #pi4j @savageautomate | @pi4j
  • 10. GPIO Output Circuit Active-High Relay Board! 12 VDC " Strobe" Light! 12 VDC Illuminated " Switch! 12 VDC" Power Source! #Devoxx #pi4j @savageautomate | @pi4j
  • 11. GPIO Output Example // create GPIO controller final GpioController gpio = GpioFactory.getInstance(); // create a GPIO output final GpioPinDigitalOutput output = gpio.provisionDigitalOutputPin( RaspiPin.GPIO_12, PinState.LOW ); ! // control GPIO output pin output.high(); output.low(); output.toggle(); // invert current state output.pulse(1000); // set state for a limited duration #Devoxx #pi4j @savageautomate | @pi4j
  • 12. Demo #Devoxx #pi4j @savageautomate | @pi4j
  • 13. GPIO Inputs GPIO Inputs can be used to “sense” things #Devoxx #pi4j @savageautomate | @pi4j
  • 14. GPIO Input Circuit #Devoxx #pi4j @savageautomate | @pi4j
  • 15. GPIO Input Reference •GPIO inputs require a “reference” voltage. •Without a reference, a GPIO pin can “float” •The Raspberry Pi includes internal PULL-UP and PULL-DOWN resistor settings that can be configured via Pi4J. #Devoxx #pi4j @savageautomate | @pi4j
  • 16. GPIO Input Reference PULL-DOWN Resistance provides a reference (bias) to GROUND (0 VDC). If your circuit expects to provide +3.3VDC to signal the GPIO pin HIGH, then you need a PULL-DOWN reference. PULL-UP Resistance provides a reference (bias) to +3.3 VDC. If your circuit expects to provide GROUND to signal the GPIO pin LOW, then you need a PULL-UP reference. #Devoxx #pi4j @savageautomate | @pi4j
  • 17. GPIO Input Circuit Alternatively, you can build the PULL-UP or PULL-DOWN reference in the hardware circuit. The circuit below demonstrates a PULL-UP resistor at R1. This circuit signals the GPIO input pin to LOW when the switch closes the circuit and a path to GROUND is complete. #Devoxx #pi4j @savageautomate | @pi4j
  • 18. GPIO Input Example // create GPIO controller final GpioController gpio = GpioFactory.getInstance(); ! // create a GPIO output final GpioPinDigitalInput input = gpio.provisionDigitalInputPin( RaspiPin.GPIO_02, PinPullResistance.PULL_DOWN); #Devoxx #pi4j @savageautomate | @pi4j
  • 19. GPIO Input Listener // create event listener for GPIO input pin input.addListener((GpioPinListenerDigital) Java 8 Lambda (GpioPinDigitalStateChangeEvent event) -­‐> { ! // set output state to match the input state output.setState(event.getState()); ! }); #Devoxx #pi4j @savageautomate | @pi4j
  • 20. Demo #Devoxx #pi4j @savageautomate | @pi4j
  • 21. Pi4J Component API • The component APIs provides an abstraction layer from the hardware I/O layer. • This allows hardware design/circuitry to change with *less* impact to your implementation code. • For example, a RELAY could be controlled from GPIO, RS232, SPI, or I2C. You program defines the RELAY impl up front based on the hardware interface, but the rest of your program logic works against the RELAY component #Devoxx #pi4j @savageautomate | @pi4j
  • 22. Pi4J Component API • Keypad • Light / LED • Dimmable Light • LCD • Power Controller • Relay • Momentary Switch • Toggle Switch • Analog Sensor • Distance Sensor • Motion Sensor • Temperature Sensor #Devoxx #pi4j @savageautomate | @pi4j
  • 23. GPIO Components Example ! // create LED component final Light light = new GpioLightComponent(output); ! // usage example light.on(); (or) light.off(); ! // create momentary switch component final MomentarySwitch ms = new GpioMomentarySwitchComponent( input, PinState.LOW, // “OFF” pin state PinState.HIGH); // “ON” pin state #Devoxx #pi4j @savageautomate | @pi4j
  • 24. Demo #Devoxx #pi4j @savageautomate | @pi4j
  • 25. Smart Devices / Internet of Things “A smart device is an electronic device, generally connected to other devices or networks via different protocols such as Bluetooth, NFC, WiFi, 3G, etc., that can operate to some extent interactively and autonomously. It is widely believed that these types of devices will outnumber any other forms of smart computing and communication in a very short time, in part, acting as a useful enabler for the Internet of Things. “ (reference: http://en.wikipedia.org/wiki/Smart_device) #Devoxx #pi4j @savageautomate | @pi4j
  • 26. Smart Devices / Internet of Things • Network/Internet Accessible (Connected) • Autonomous Behavior • Interactive Capability • Notifications • Control #Devoxx #pi4j @savageautomate | @pi4j
  • 27. Create A “Smart” Home • Recently moved into a new home. • I want to automate the subsystems in the home and make it a “smart” home. • I want to remotely control and monitor my home. #Devoxx #pi4j @savageautomate | @pi4j
  • 28. Off The Shelf Smart Devices • Lots of emerging IoT Devices • Proprietary Hardware, Software/Apps & Protocols • Limited Interconnectivity or Interoperability #Devoxx #pi4j @savageautomate | @pi4j
  • 29. D.I.Y. Smart Devices • Using Raspberry Pi + Java + Pi4J • Augment existing “dumb” devices and sensors to create new interactive capability and autonomous intelligence. • With simple GPIO and a little circuitry you can create all kinds of “Smart Devices”. Pi4J #Devoxx #pi4j @savageautomate | @pi4j
  • 30. Basement Flood Alarm: • Take a water level sensor and instrument it to add intelligent monitoring and notification capability Pi4J Notifications Control other devices Water Level Sensor Remotely Monitor #Devoxx #pi4j @savageautomate | @pi4j
  • 31. HVAC Alarm: • Take a HVAC moisture sensor and extend it to add intelligent monitoring and notification capability Pi4J Notifications Control other devices Remotely Monitor HVAC Condensate Leak Detector (Moisture Detector) #Devoxx #pi4j @savageautomate | @pi4j
  • 32. Mail Notification: • Instrument a mailbox to get notified when mail arrives. Pi4J Notifications Control other devices Remotely Monitor Magnetic Door Sensors #Devoxx #pi4j @savageautomate | @pi4j
  • 33. Driveway Alarm: • Add a sensor to driveway to get notified when someone approaches the house. Pi4J Notifications Control other devices Infrared Beam Sensors #Devoxx #pi4j @savageautomate | @pi4j
  • 34. Garage Door Opener: • Remote control and monitoring of garage door • Auto-close if left open Garage Door Opener Door Sensor Pi4J Notifications Timer Remotely monitor and control #Devoxx #pi4j @savageautomate | @pi4j
  • 35. Sprinkler System • Remotely control, configure and schedule the system. • Skip watering schedules if raining or if rain is forecasted Pi4J Sprinkler Controller Rain Sensor Schedule Notifications Weather Forecasts Remote Control and Monitoring #Devoxx #pi4j @savageautomate | @pi4j
  • 36. Security System • Remote control and monitoring of the system • Activate other devices based on the state of the system Pi4J Security System Notifications Remote Control and Monitoring #Devoxx #pi4j @savageautomate | @pi4j
  • 37. HVAC System • Interface with HVAC thermostat to remotely monitor and control the HVAC system. Pi4J Thermostat Notifications Remote Control and Monitoring #Devoxx #pi4j @savageautomate | @pi4j
  • 38. Let’s Build a Proof of Concept Demo • Driveway Alerts • Flood Alerts Pi4J • Mailbox Notifications • HVAC System Alerts #Devoxx #pi4j @savageautomate | @pi4j
  • 39. Demo #Devoxx #pi4j @savageautomate | @pi4j
  • 40. What About Connectivity? • How do we aggregate monitored data? • How do we share information between sensors and devices to make intelligent automation decisions? • How do we access data and control these “smart” devices remotely? Basement Attic Mailbox Garage #Devoxx #pi4j @savageautomate | @pi4j
  • 41. MQTT Basement Attic Mailbox Garage MQTT BROKER MQTT Client MQTT Client MQTT Client MQTT Client #Devoxx #pi4j @savageautomate | @pi4j
  • 42. MQTT Desktop Tablet Web Server Mobile MQTT BROKER MQTT Client MQTT Client MQTT Client MQTT Client #Devoxx #pi4j @savageautomate | @pi4j
  • 43. MQTT Overview • MQTT == “Message Queuing Telemetry Transport” • M2M connectivity protocol • Lightweight Communications • Small Code Footprint • Open Standards Based • Asynchronous Messaging • Emerging protocol competing to be an IoT “standard” protocol #Devoxx #pi4j @savageautomate | @pi4j
  • 44. MQTT Features • Publish / Subscribe Messaging Transport (topics) • Last Will & Testament • QOS (Quality of Service) • Message Persistence • Supports Binary Data (Payloads) • TCP Based • Security (SSL/TLS) #Devoxx #pi4j @savageautomate | @pi4j
  • 45. MQTT Topics • Publishers, Subscribers & Broker (images from eclipse.org) #Devoxx #pi4j @savageautomate | @pi4j
  • 46. MQTT Software • Mosquito Broker (Server) http://www.mosquitto.org/ ! • Eclipse Paho (Client) http://www.eclipse.org/paho/ ! • MQTT.Fx http://mqttfx.jfx4ee.org/ by Jens Deters (@Jerady) #Devoxx #pi4j @savageautomate | @pi4j
  • 47. Demo #Devoxx #pi4j @savageautomate | @pi4j
  • 48. 2015 Goals • Start creating DIY “smart” devices using Raspberry Pi, Pi4J, and Java. • Create a blog article for each project and publish the wiring diagrams, source code, and materials listing. • Implement these DIY smart devices throughout my home and create a “smart” home. • Aggregate the information from these connected smart devices to start creating an intelligent and automated home #Devoxx #pi4j @savageautomate | @pi4j
  • 49. Questions #Devoxx #pi4j @savageautomate | @pi4j
  • 50. Savage Home Automation Blog The Pi4J Project pi4j.com savagehomeautomation.com @savageautomate @pi4j Sides & source code available now at http://www.savagehomeautomation.com/devoxx #Devoxx #pi4j @savageautomate | @pi4j