SlideShare ist ein Scribd-Unternehmen logo
1 von 68
Internet Of Things
Presented by Taher Alblowe
Founder GeeksValley.com
Jeddah I/O
GeeksValley - Presentation 2
Index
•Whois.
•Maker movement.
•Internet of things.
•Learning how to build iot products.
•Prototyping.
•Today’s Project
GeeksValley - Presentation 3
whois
@Alblowe taher@geeksvalley.com
- Bachelor Degree in Computer Science.
- Master Degree in e-Services.
- Had previous startups ( failed / success ).
- Worked different technical /business positions in KSA, and Overseas.
- Google Developer Groups Mentor.
- Geek, Geek, Geek, Geek, Geek…
- Founder of Geeks Valley
Taher Alblowe
GeeksValley - Presentation 4
Maker Movement
‫الثقافة؟‬ ‫هذه‬ ‫ماهي‬
GeeksValley - Presentation 5
‫الشخص‬(‫هاوي‬)‫الذي‬‫يقوم‬‫بصنع‬‫نموذج‬‫أولي‬‫لمنتج‬‫يحل‬‫مشكلة‬‫معينة‬
GeeksValley - Presentation 6
‫صناعات‬‫األفراد‬
GeeksValley - Presentation 7
GeeksValley - Presentation 8
GeeksValley - Presentation 9
Learning how to build IOT
products
GeeksValley - Presentation 10
What is the Internet Of Things?
The Internet of Things (IoT) is the network of physical objects or "things" embedded with electronics,
software, sensors, and network connectivity, which enables these objects to collect and exchange data.
GeeksValley - Presentation 11
IOT Timeline
GeeksValley - Presentation 12
IOT Timeline
Internet of Content Internet of Services Internet of People Internet of Things
Web 1.0
Web sites
Search
eMail
HTML
Web 2.0
eCommerce
eServices
REST
Social Media
Mobile enabler
HTML5
Device 2 Device
Communication
GeeksValley - Presentation 13
What Makes it “IOT” ?
About the Devices ..
GeeksValley - Presentation 14
What Makes it “IOT” ?
GeeksValley - Presentation 15
Sensors..
GeeksValley - Presentation 16
Connectivity ..
GeeksValley - Presentation 17
People & Processes..
GeeksValley - Presentation 18
In nutshell ..
UID (Unique Identification Number)
Communication
sensors
intelligence
Mobility
GeeksValley - Presentation 19
Popular Protocols..
GeeksValley - Presentation 20
Iot Big Players ..
GeeksValley - Presentation 21
Iot popular platforms..
GeeksValley - Presentation 22
Iot Standards under
progress !
ITU are still working on providing a well documented and agreed standards.
GeeksValley - Presentation 23
Iot can serve all fields
GeeksValley - Presentation 24
Iot example product..
GeeksValley - Presentation 25
Iot example product..
GeeksValley - Presentation 26
Iot example product..
GeeksValley - Presentation 27
Iot example product..
GeeksValley - Presentation 28
Iot example product..
GeeksValley - Presentation 29
Iot example product..
GeeksValley - Presentation 30
Iot example product..
GeeksValley - Presentation 31
Iot in 2020
GeeksValley - Presentation 32
Iot canvas
GeeksValley - Presentation 33
Start by learning how to
prototype
GeeksValley - Presentation 34
Iot prototyping boards timeline
GeeksValley - Presentation 35
Arduino ..
an open-source computer hardware and software company, project and user community
that designs and manufactures microcontroller-based kits for building digital devices
and interactive objects that can sense and control the physical world.
GeeksValley - Presentation 36
Arduino pins..
GeeksValley - Presentation 37
Arduino IDE..
GeeksValley - Presentation 38
Sensors examples..
GeeksValley - Presentation 39
Arduino prototype example
GeeksValley - Presentation 40
Raspberry pi ..
The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer
monitor or TV, and uses a standard keyboard and mouse. It is a capable little device
that enables people of all ages to explore computing, and to learn how to program in
languages like Scratch and Python
GeeksValley - Presentation 41
Raspberry pi GPIO..
GeeksValley - Presentation 42
Raspberry pi GPIO..
GeeksValley - Presentation 43
Raspberry pi GPIO..
GeeksValley - Presentation 44
Raspberry pi GPIO..
GeeksValley - Presentation 45
Raspberry pi shield example
GeeksValley - Presentation 46
Raspberry pi some projects..
GeeksValley - Presentation 47
Raspberry pi some projects..
GeeksValley - Presentation 48
Raspberry pi some projects..
GeeksValley - Presentation 49
Raspberry pi some projects..
GeeksValley - Presentation 50
Raspberry pi some projects..
GeeksValley - Presentation 51
How can I start learning ?
GeeksValley - Presentation 52
Learning sources
raspberrypi.orgarduino.cc instructables.com Geeksvalley.com
GeeksValley - Presentation 54
Geeks Valley learning system
GeeksValley - Presentation 55
Geeks Valley learning system
GeeksValley - Presentation 56
Geeks Valley learning system
GeeksValley - Presentation 57
Geeks Valley learning system
GeeksValley - Presentation 58
Join us NOW..
Are you a talent ? Have a geek soul ?
GeeksValley.com
Taher@GeeksValley.com
GeeksValley - Presentation 59
Today’s Project ..
Garage SMS Security System
GeeksValley - Presentation 60
Features..
 100% secure garage door operation, with access control lists.
 Only authorized family members can open.
 Ability to monitor or control garage anywhere in the world from a controlled website.
 Full video capture of who's coming into the garage, uploaded securely to your website.
 Ability to remotely stop or kill the process in case of malfunction or abuse
 Email notifications when a family member arrives or leaves the house
 SMS solution, with no GSM card purchases or any cell contracts
In less than 30 minutes .. !!!
GeeksValley - Presentation 61
Step 1: Requirements
• Raspberry Pi
• Camera
• relay board
• Wires
• Website
• Twilio number account
GeeksValley - Presentation 62
Step 2: Install required libraries on Raspberry Pi
sudo apt-get install -y python-pip mysql-server python-dev libmysqlclient-dev
sudo pip install MySQL-python twilio
create two directories:
/home/pi/movies
/home/pi/pictures
GeeksValley - Presentation 63
Step 3: Create SQL databases, users, permissions
mysql -pYourSQLPassword -u root -h localhost
create database GarageDoor;
use GarageDoor;
create table Door(sSid CHAR(40));
create table Authorized(sPhone CHAR(20));
create table Log(sPhone CHAR(20), sAction CHAR(10), dDate datetime);
insert into Authorized (sPhone) values ('+YourNumber');
CREATE USER 'garage'@'localhost' IDENTIFIED BY 'garagepassword';
GRANT ALL PRIVILEGES ON * . * TO 'garage'@'localhost';
FLUSH PRIVILEGES;
exit;
GeeksValley - Presentation 64
Step 4: connect the relay and garage door opener
GeeksValley - Presentation 65
Step 5: Add a camera
GeeksValley - Presentation 66
Step 6: Python Code
http://www.geeksvalley.com/door_sms_security.py
GeeksValley - Presentation 67
Step 7: Execute and test..
sudo chmod 755 door_sms_security.py
sudo python door_sms_security.py
Thank you …

Weitere ähnliche Inhalte

Ähnlich wie Internet of things - انترنت الأشياء

Io t idas_intro_ul20_nobkg
Io t idas_intro_ul20_nobkgIo t idas_intro_ul20_nobkg
Io t idas_intro_ul20_nobkg
FIWARE
 
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
Gene Kim
 
11-2016_Entrepreneurial Engineer
11-2016_Entrepreneurial Engineer11-2016_Entrepreneurial Engineer
11-2016_Entrepreneurial Engineer
Mark W. Bennett
 

Ähnlich wie Internet of things - انترنت الأشياء (20)

Fiware IoT_intro&scenarios
Fiware IoT_intro&scenariosFiware IoT_intro&scenarios
Fiware IoT_intro&scenarios
 
Io t idas_intro_ul20_nobkg
Io t idas_intro_ul20_nobkgIo t idas_intro_ul20_nobkg
Io t idas_intro_ul20_nobkg
 
OWASP – Internet of Things (IoT) – Top 10 Vulnerabilities List
OWASP – Internet of Things (IoT) – Top 10 Vulnerabilities ListOWASP – Internet of Things (IoT) – Top 10 Vulnerabilities List
OWASP – Internet of Things (IoT) – Top 10 Vulnerabilities List
 
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
DevOps: Who Will Create $2.6 Trillion In Business Value Per Year?
 
Faircom BigBlueButton Developers Community Hackathon 2020 - RIADVICE - Ghazi ...
Faircom BigBlueButton Developers Community Hackathon 2020 - RIADVICE - Ghazi ...Faircom BigBlueButton Developers Community Hackathon 2020 - RIADVICE - Ghazi ...
Faircom BigBlueButton Developers Community Hackathon 2020 - RIADVICE - Ghazi ...
 
Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023
 
OpenPicus Keynote at Web of Things workshop 2012 in Newcastle
OpenPicus Keynote at Web of Things workshop 2012 in NewcastleOpenPicus Keynote at Web of Things workshop 2012 in Newcastle
OpenPicus Keynote at Web of Things workshop 2012 in Newcastle
 
Devoxx 2013 io t
Devoxx 2013  io tDevoxx 2013  io t
Devoxx 2013 io t
 
11-2016_Entrepreneurial Engineer
11-2016_Entrepreneurial Engineer11-2016_Entrepreneurial Engineer
11-2016_Entrepreneurial Engineer
 
Overview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer KitOverview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer Kit
 
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
 
Internet of Things Conference - Bogor city
Internet of Things Conference - Bogor cityInternet of Things Conference - Bogor city
Internet of Things Conference - Bogor city
 
Internet Identity Workshop #29 highlights with Drummond Reed
Internet Identity Workshop #29 highlights with Drummond ReedInternet Identity Workshop #29 highlights with Drummond Reed
Internet Identity Workshop #29 highlights with Drummond Reed
 
Advanced view of projects 1502 raspberry pi list raspberry pi projects
Advanced view of projects 1502 raspberry pi list   raspberry pi projectsAdvanced view of projects 1502 raspberry pi list   raspberry pi projects
Advanced view of projects 1502 raspberry pi list raspberry pi projects
 
Road to RIoT 2017 Medan
Road to RIoT 2017 MedanRoad to RIoT 2017 Medan
Road to RIoT 2017 Medan
 
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamQuick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
 
AT&T IoT Hackathon - Seattle
AT&T IoT Hackathon - SeattleAT&T IoT Hackathon - Seattle
AT&T IoT Hackathon - Seattle
 
mLearnCon 2014 Featured Session: How Emerging Mobile Technologies Are Redefin...
mLearnCon 2014 Featured Session: How Emerging Mobile Technologies Are Redefin...mLearnCon 2014 Featured Session: How Emerging Mobile Technologies Are Redefin...
mLearnCon 2014 Featured Session: How Emerging Mobile Technologies Are Redefin...
 
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
 
CES- Technology for the Future
CES- Technology for the FutureCES- Technology for the Future
CES- Technology for the Future
 

Kürzlich hochgeladen

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Kürzlich hochgeladen (20)

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 

Internet of things - انترنت الأشياء