SlideShare ist ein Scribd-Unternehmen logo
1 von 49
Downloaden Sie, um offline zu lesen
Smart Home Live:Intelligent Detection of Fire or a Break-In with MQTT and OpenHAB
Support their clients to
successfully transform their
business in a digitized and
connected world
expertise in MQTT
the protocol that drives
the internet of things
Consulting for
insurance companies
and other industries
Consulting and Creating
of Building Block for the
Internet of Things
About us
SMART HOME LIVE
"
MOTIVATION
1
•  Showcase objectives
•  Fire dangers
"
OVERVIEW
2
•  1st live demo -
maintenance features
•  Basic architecture
"
SETUP
3
•  Architectural details
•  2nd live demo – break-in
detection
"
CONCLUSION
4
•  Lessons learned
•  Outlook
 Evaluate available technologies like MQTT, Eclipse SmartHome
 We are not building a product!
 Iterate and explore key features for an intelligent smart home
Showcase objectives
Fires are life threatening dangerous
"
400 deaths
!
"
4000 injured
!
"
200.000
!
€
1 billion
!
3 breaths can be sucient to die
1 breath can have lifelong consequences
“Where there's fire there's smoke”
of fires start at night where
human‘s sense of smell is asleep
70 %
Fire! Time to leave!
4 min
2 min
SMOKE DETECTORS are mandatory
In Germany2018
In France2015
In USA2010
h#p://www.fusac.fr/countdown3smoke3detectors/!h#p://www.rauchmelderpflicht.eu/download/Uebersicht_Rauchmelderpflicht.pdf!
Simple solution Advanced solution
vs.
Some ideas for improvements
01 Maintenance 02 03Connectivity Improved security
Showtime !
Inside of the House Outside of the House
Basic Architecture
Architectural Details - Outside of the house
Subscribe
Publish
temperature
sensor
MQTT-Broker
laptop
mobile device
publish: “21°C“
publish: “21°C“
publish: “21°C“
subscribe
subscribe
1
subscribe to
topic: “temperature“ 2
publish to
topic: “temperature“
Why MQTT ?
Bandwidth Ecient
Push Capability Works great behind a Firewall
Quality of Service Levels
Quality of Service
Topics – Topic Tree
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
Topics
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
Topics
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
Topics
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
Topics
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
Topics
myhome!
livingroom!
bedroom!
smoke3detector!
temperature!
smoke3detector!
temperature!
/! /!
otherhome!
•  Open!Source!
•  “Reference!ImplementaEon”!
•  Many!languages:!Java,!Javascript,!Lua,!C,!C++,!Go,!Python!!
•  AcEve!Community!
Eclipse Paho
Now some code!!
MQTT Publish
MqttClient mqttClient = new MqttClient
("tcp://localhost:1883", “publisher");
mqttClient.connect();
mqttClient.publish(“test","test123".getBytes(),0, true);
MQTT Subscribe
MqttCallback mqttCallback = new MqttCallback() {
@Override
public void messageArrived(String topic, MqttMessage mqttMessage)
{
System.out.println(topic +" "+ new String(mqttMessage.getPayload()));
}
};
MqttClient mqttClient = new MqttClient("tcp://localhost:1883", “subscriber");
mqttClient.setCallback(mqttCallback);
mqttClient.connect();
mqttClient.subscribe(“test",2);
MQTT broker
HiveMQ – at a glance
High Performance MQTT Broker ! ! Open Plugin System
Highly Scalable ! ! Supports Bridge Protocol
Clustering ! ! Native Websockets Support
MQTT Architecture
Publish
•  Testalarm
Subscribe
•  Alarm
•  Status
•  Battery Status
Publish
•  Alarm
•  Status
•  Battery Status
Subscribe
•  Testalarm
Webdashboard
Emergency
Service
any API
SMS
(Twilio)
Integration of other Services
SQL/
NOSQL!
Mobile!Devices!
MQTT!
P!
L!
U!
G!
I!
N!
JDBC/other
HTTP
MQTT!over!
Websockets!
MQTT!
Architectural Details - Inside the house
Smart Home Devices
Communication
•  868 MHz
•  BidCoS®-Protocol
(„Bidirectional Communication
Standard“)
•  Supports „AES signed
commands“
Devices
•  Brand: HomeMatic
•  Sold by eq-3 (ELV)
•  Readily available
•  Many different devices
Hardware
Software
Inside the House


Homegear
(v1.6.0)!
(v0.5.732)!
Raspberry Pi (Modell B)
CPU: ARM1176JZF-S (700 MHz)
RAM: 512 MB
Power: 5 V, 700 mA (3,5 W)
Busware CCD
•  CC1101 transceiver
•  ILI9341 based 2.8" TFT
Touch Display
•  culfw firmware
Extras
•  Transparent case
(busware)
•  WiFi-Stick
•  Antenna
Hardware
Software
Inside the House


Homegear
(v1.6.0)!
(v0.5.2436)!
Raspberry Pi 2 (Modell B)
CPU: ARM Cortex-A7
(4 x 900 MHz)
RAM: 1024 MB
Power: 5 V, 800 mA (4 W)
Busware CCD
•  CC1101 transceiver
•  ILI9341 based 2.8" TFT
Touch Display
•  culfw firmware
Extras
•  Transparent case
(busware)
•  WiFi-Stick
•  Antenna
OpenHAB by Example
“openHAB is a software for integrating different home
automation systems and technologies into one single
solution”
Core%Components%
Items% Protocol%Bindings% Automa6on%Logic%
Core Components were moved to eclipse:
OpenHAB by Example
Core%Components%
Items% Protocol%Bindings% Automa6on%Logic%
Alert!
Ba#ery!Status!
HomemaEc!
MQTT!
Raise!Alarm!
Propagate!
Alarm!
Again some code!!
Item definitions
/* Item format
TYPE ITEMNAME LABEL ICON (GROUPS) {BINDINGS}
*/
/* Group definitions */
Group:Switch:OR(ON,OFF) FireAlertDevices "Brandmelder"
/* Example item with binding */
Switch SmokeDetector1_Fire "Feueralarm Schlafzimmer" <fire> 
(FireAlertDevices,Schlafzimmer) 
{homematic="id=JEQ0736552, channel=1, parameter=STATE"}
Rule definitions
rule "Send MQTT messages on alerts"
when
Item FireAlertDevices changed
then
if (FireAlertDevices.state == ON) {
// we find the alerting sd and only send an alert for the "first responder"
var alertingSd = FireAlertDevices?.members.findFirst(sd|sd.state == ON)
var String mqttItemName = "MQTT_" + alertingSd.name
logDebug("MQTT", "Notifying mqtt item '{}'", mqttItemName)
postUpdate(mqttItemName, "ON")
} else {
logWarn("FireAlertDevices", "Ignored state change to " +
FireAlertDevices.state)
}
end
Integration with other components
It!might!get!loud!!
STEPS TO PRODUCTION
Hardening / Security Cloud
TLS, Authentication, Authorization, High Availability
01
Encrypt Inhouse Communication02
Sophisticated Hardware03
Platform Improvements04
Lessons Learned
!
POSSIBLE TO BUILD A SOLUTION
WITHOUT MUCH CODING
! THE SMART HOME WORLD
IS CHANGING RAPIDLY
!
INTERESTING OPEN SOURCE
SMART HOME TECHNOLOGIES
OUT THERE
!
FOCUS ON ADDED VALUE AND
INTEGRATE CERTIFIED SECURITY
SOLUTIONS
THANK YOU
!

Weitere ähnliche Inhalte

Was ist angesagt?

Introducing MQTT
Introducing MQTTIntroducing MQTT
Introducing MQTT
Andy Piper
 
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
Dominik Obermaier
 
MQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object APIMQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object API
Michael Koster
 

Was ist angesagt? (20)

Node home automation with Node.js and MQTT
Node home automation with Node.js and MQTTNode home automation with Node.js and MQTT
Node home automation with Node.js and MQTT
 
MQTT with Java - a protocol for IoT and M2M communication
MQTT with Java - a protocol for IoT and M2M communicationMQTT with Java - a protocol for IoT and M2M communication
MQTT with Java - a protocol for IoT and M2M communication
 
MQTT - Protocol for the Internet of Things
MQTT - Protocol for the Internet of ThingsMQTT - Protocol for the Internet of Things
MQTT - Protocol for the Internet of Things
 
IAB-5039 : MQTT: A Protocol for the Internet of Things (InterConnect 2015)
IAB-5039 : MQTT: A Protocol for the Internet of Things (InterConnect 2015)IAB-5039 : MQTT: A Protocol for the Internet of Things (InterConnect 2015)
IAB-5039 : MQTT: A Protocol for the Internet of Things (InterConnect 2015)
 
Introducing MQTT
Introducing MQTTIntroducing MQTT
Introducing MQTT
 
Mqtt – a protocol for the internet of things
Mqtt – a protocol for the internet of thingsMqtt – a protocol for the internet of things
Mqtt – a protocol for the internet of things
 
Mqtt presentation
Mqtt presentationMqtt presentation
Mqtt presentation
 
[http://1PU.SH] Building Wireless Sensor Networks with MQTT-SN, RaspberryPi a...
[http://1PU.SH] Building Wireless Sensor Networks with MQTT-SN, RaspberryPi a...[http://1PU.SH] Building Wireless Sensor Networks with MQTT-SN, RaspberryPi a...
[http://1PU.SH] Building Wireless Sensor Networks with MQTT-SN, RaspberryPi a...
 
MQTT, Eclipse Paho and Java - Messaging for the Internet of Things
MQTT, Eclipse Paho and Java - Messaging for the Internet of ThingsMQTT, Eclipse Paho and Java - Messaging for the Internet of Things
MQTT, Eclipse Paho and Java - Messaging for the Internet of Things
 
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
Bringing M2M to the web with Paho: Connecting Java Devices and online dashboa...
 
IoT with MQTT and Paho for Webpages - Eclipse Democamp MĂźnchen 2014
IoT with MQTT and Paho for Webpages - Eclipse Democamp MĂźnchen 2014IoT with MQTT and Paho for Webpages - Eclipse Democamp MĂźnchen 2014
IoT with MQTT and Paho for Webpages - Eclipse Democamp MĂźnchen 2014
 
MQTT - The Internet of Things Protocol
MQTT - The Internet of Things ProtocolMQTT - The Internet of Things Protocol
MQTT - The Internet of Things Protocol
 
Low Latency Mobile Messaging using MQTT
Low Latency Mobile Messaging using MQTTLow Latency Mobile Messaging using MQTT
Low Latency Mobile Messaging using MQTT
 
Connect to the IoT with a lightweight protocol MQTT
Connect to the IoT with a lightweight protocol MQTTConnect to the IoT with a lightweight protocol MQTT
Connect to the IoT with a lightweight protocol MQTT
 
Powering your next IoT application with MQTT - JavaOne 2014 tutorial
Powering your next IoT application with MQTT - JavaOne 2014 tutorialPowering your next IoT application with MQTT - JavaOne 2014 tutorial
Powering your next IoT application with MQTT - JavaOne 2014 tutorial
 
M2M for Java Developers: MQTT with Eclipse Paho - Eclipsecon Europe 2013
M2M for Java Developers: MQTT with Eclipse Paho - Eclipsecon Europe 2013M2M for Java Developers: MQTT with Eclipse Paho - Eclipsecon Europe 2013
M2M for Java Developers: MQTT with Eclipse Paho - Eclipsecon Europe 2013
 
MQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object APIMQTT - REST Bridge using the Smart Object API
MQTT - REST Bridge using the Smart Object API
 
JAX 2014 - M2M for Java Developers with MQTT
JAX 2014 - M2M for Java Developers with MQTTJAX 2014 - M2M for Java Developers with MQTT
JAX 2014 - M2M for Java Developers with MQTT
 
node.js is made for IoT - node.hh 07/16, Hamburg by Michael Kuehne
node.js is made for IoT - node.hh 07/16, Hamburg by Michael Kuehnenode.js is made for IoT - node.hh 07/16, Hamburg by Michael Kuehne
node.js is made for IoT - node.hh 07/16, Hamburg by Michael Kuehne
 
How mqtt 5 makes difficult io t use cases possible
How mqtt 5 makes difficult io t use cases possibleHow mqtt 5 makes difficult io t use cases possible
How mqtt 5 makes difficult io t use cases possible
 

Andere mochten auch

Finlay Smart Brochure
Finlay Smart BrochureFinlay Smart Brochure
Finlay Smart Brochure
robby5292
 
Beyond The Smart Home
Beyond The Smart Home Beyond The Smart Home
Beyond The Smart Home
skytsai
 

Andere mochten auch (20)

Finlay Smart Brochure
Finlay Smart BrochureFinlay Smart Brochure
Finlay Smart Brochure
 
Niche smart-home-automation-all-products
Niche smart-home-automation-all-productsNiche smart-home-automation-all-products
Niche smart-home-automation-all-products
 
Why smart technology does not prevail?
Why smart technology does not prevail?Why smart technology does not prevail?
Why smart technology does not prevail?
 
Open Data - Smart Community Continuum
Open Data - Smart Community ContinuumOpen Data - Smart Community Continuum
Open Data - Smart Community Continuum
 
Cloogy: a step towards the smart home concept
Cloogy: a step towards the smart home conceptCloogy: a step towards the smart home concept
Cloogy: a step towards the smart home concept
 
Smart Homes made smarter with Javascript
Smart Homes made smarter with JavascriptSmart Homes made smarter with Javascript
Smart Homes made smarter with Javascript
 
Smart Community Introduction
Smart Community IntroductionSmart Community Introduction
Smart Community Introduction
 
Ifttt for smart home and home automation (energy management)
Ifttt for smart home and home automation (energy management)Ifttt for smart home and home automation (energy management)
Ifttt for smart home and home automation (energy management)
 
Beyond The Smart Home
Beyond The Smart Home Beyond The Smart Home
Beyond The Smart Home
 
TR-069 and the road to the smart home
TR-069 and the road to the smart homeTR-069 and the road to the smart home
TR-069 and the road to the smart home
 
The 2017 Smart Home Insider Survey
The 2017  Smart Home Insider Survey The 2017  Smart Home Insider Survey
The 2017 Smart Home Insider Survey
 
Tracxn Research - Smart Homes Landscape, November 2016
Tracxn Research - Smart Homes Landscape, November 2016Tracxn Research - Smart Homes Landscape, November 2016
Tracxn Research - Smart Homes Landscape, November 2016
 
Smart home marketing strategies
Smart home marketing strategiesSmart home marketing strategies
Smart home marketing strategies
 
Karsten Held: Internet Of Things (IOT), SmartBuilding & SmartHome Research (J...
Karsten Held: Internet Of Things (IOT), SmartBuilding & SmartHome Research (J...Karsten Held: Internet Of Things (IOT), SmartBuilding & SmartHome Research (J...
Karsten Held: Internet Of Things (IOT), SmartBuilding & SmartHome Research (J...
 
Smart Home Tech Short
Smart Home Tech ShortSmart Home Tech Short
Smart Home Tech Short
 
Intro to basic fire alarm technology
Intro to basic fire alarm technologyIntro to basic fire alarm technology
Intro to basic fire alarm technology
 
Fire detection & alarm system
Fire detection & alarm systemFire detection & alarm system
Fire detection & alarm system
 
The Smart Home Buyer Solution
The Smart Home Buyer SolutionThe Smart Home Buyer Solution
The Smart Home Buyer Solution
 
Fire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle SystemFire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle System
 
Union - smart home and building technology and automation
Union - smart home and building technology and automation Union - smart home and building technology and automation
Union - smart home and building technology and automation
 

Ähnlich wie Smart Home Live: Intelligent Detection of Fire or a Break-In with MQTT and OpenHAB

Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
Benjamin CabĂŠ
 
Unizen Smart Automation Brochure-2015
Unizen Smart Automation Brochure-2015Unizen Smart Automation Brochure-2015
Unizen Smart Automation Brochure-2015
Gurudev Basavaraj Goud
 
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdfSCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
GobinathAECEJRF1101
 

Ähnlich wie Smart Home Live: Intelligent Detection of Fire or a Break-In with MQTT and OpenHAB (20)

Smart home in the insurance industry
Smart home in the insurance industrySmart home in the insurance industry
Smart home in the insurance industry
 
Null mumbai-iot-workshop
Null mumbai-iot-workshopNull mumbai-iot-workshop
Null mumbai-iot-workshop
 
Pulga, a Tiny Open-Source MQTT Broker for Flexible and Secure IoT Deployments
Pulga, a Tiny Open-Source MQTT Broker for Flexible and Secure IoT DeploymentsPulga, a Tiny Open-Source MQTT Broker for Flexible and Secure IoT Deployments
Pulga, a Tiny Open-Source MQTT Broker for Flexible and Secure IoT Deployments
 
HiveMQ + Kafka - The Ideal Solution for IoT MQTT Data Integration
HiveMQ + Kafka - The Ideal Solution for IoT MQTT Data IntegrationHiveMQ + Kafka - The Ideal Solution for IoT MQTT Data Integration
HiveMQ + Kafka - The Ideal Solution for IoT MQTT Data Integration
 
A pure Java MQTT Stack for IoT
A pure Java MQTT Stack for IoTA pure Java MQTT Stack for IoT
A pure Java MQTT Stack for IoT
 
Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015
 
Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini ...
 
Design Like a Pro - Best Practices For IIoT 2016
Design Like a Pro - Best Practices For IIoT 2016Design Like a Pro - Best Practices For IIoT 2016
Design Like a Pro - Best Practices For IIoT 2016
 
Design Like a Pro - Best Practices For IIoT
Design Like a Pro - Best Practices For IIoTDesign Like a Pro - Best Practices For IIoT
Design Like a Pro - Best Practices For IIoT
 
Internet of Things 101 - Part II
Internet of Things 101 - Part IIInternet of Things 101 - Part II
Internet of Things 101 - Part II
 
Unizen Smart Automation Brochure-2015
Unizen Smart Automation Brochure-2015Unizen Smart Automation Brochure-2015
Unizen Smart Automation Brochure-2015
 
HiveMQ + Kafka: The ideal solution for IoT MQTT data integration
HiveMQ + Kafka: The ideal solution for IoT MQTT data integrationHiveMQ + Kafka: The ideal solution for IoT MQTT data integration
HiveMQ + Kafka: The ideal solution for IoT MQTT data integration
 
IoT and Its Application
IoT and Its ApplicationIoT and Its Application
IoT and Its Application
 
Single chip computer for iot application
Single chip computer for iot application Single chip computer for iot application
Single chip computer for iot application
 
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdfSCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
SCADA-IoT_Ben-Yee-V2-2018-ENTELEC-PowerPoint.pdf
 
Gustavo Zastrow - Introduction to AWS IoT Core and MQTT
Gustavo Zastrow - Introduction to AWS  IoT Core and MQTTGustavo Zastrow - Introduction to AWS  IoT Core and MQTT
Gustavo Zastrow - Introduction to AWS IoT Core and MQTT
 
EMQ Company Deck
EMQ Company DeckEMQ Company Deck
EMQ Company Deck
 
Ignition Edge: Simplifying the Edge of the Network
Ignition Edge: Simplifying the Edge of the NetworkIgnition Edge: Simplifying the Edge of the Network
Ignition Edge: Simplifying the Edge of the Network
 
Ignition Edge: Simplifying the Edge of the Network
 Ignition Edge: Simplifying the Edge of the Network Ignition Edge: Simplifying the Edge of the Network
Ignition Edge: Simplifying the Edge of the Network
 
HOME AUTOMATION USING INTERNET OF THINGS.pptx
HOME AUTOMATION USING INTERNET OF THINGS.pptxHOME AUTOMATION USING INTERNET OF THINGS.pptx
HOME AUTOMATION USING INTERNET OF THINGS.pptx
 

KĂźrzlich hochgeladen

Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
SUHANI PANDEY
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
nilamkumrai
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
SUHANI PANDEY
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
SUHANI PANDEY
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
nirzagarg
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 

KĂźrzlich hochgeladen (20)

Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls 🎗️ 9352988975 Sizzling | Escorts | G...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 

Smart Home Live: Intelligent Detection of Fire or a Break-In with MQTT and OpenHAB