• Complain

Schwartz M. - Building a Wireless Security Camera with Arduino

Here you can read online Schwartz M. - Building a Wireless Security Camera with Arduino full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Schwartz M. Building a Wireless Security Camera with Arduino
  • Book:
    Building a Wireless Security Camera with Arduino
  • Author:
  • Genre:
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Building a Wireless Security Camera with Arduino: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Building a Wireless Security Camera with Arduino" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Marco Schwartz, 2015. - 33 ., nglish,Easily Build Your Own DIY Wireless Security Camera Using the Arduino PlatformImagine being able to watch whats going on in your home while you are away. What if you could build your own wireless security camera using the Arduino platform and some basic components?In Building a Wireless Security Camera with Arduino, Marco Schwartz from the Open Home Automation website presents a straight to the point method to build your own security camera device with Arduino.
n this book, you will learn:How to configure an Arduino Yun & connect a USB camera to the board
How to assemble the hardware of your camera
How to make the camera stream local & cloud live video
How to automatically save pictures of intruders on DropboxBuy this book now to start building your own wireless security camera with Arduino!Pick up your copy today by clicking the Add to Cart button at the top of this page!

Schwartz M.: author's other books


Who wrote Building a Wireless Security Camera with Arduino? Find out the surname, the name of the author of the book and a list of all author's works by series.

Building a Wireless Security Camera with Arduino — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Building a Wireless Security Camera with Arduino" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Building a Wireless Security Camera with Arduino
Learn how to build a DIY Wireless Security Camera based on the Arduino Yun
Marco Schwartz, PhD
Contents

Copyright 2015 by Marc-Olivier Schwartz

All rights reserved. No part of this book may be used or reproduced in any manner whatsoever without permission except in the case of brief quotations embodied in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is given without warranty, either expressed or implied. Neither the author nor the dealers & distributors of this book will be held liable for any damages caused or alleged to be caused directly or indirectly by this book.

First eBook edition: October 2015

I am Marco Schwartz, and I am an electrical engineer, entrepreneur and author. I have a Masters degree in Electrical Engineering & Computer Science from one of the top Electrical Engineering school in France, and a Masters degree in Micro Engineering from the EPFL university in Switzerland.

I have more than 5 years of experience working in the domain of electrical engineering. My interests gravitate around electronics, home automation, the Arduino platform, open-source hardware projects, and 3D printing.

Since 2011 I have been working full-time as an entrepreneur, running websites with information about open-source hardware and building my own open-source hardware products.

This book has an accompanying website, Open Home Automation, which you can easily find by going at http://www.openhomeautomation.net. On this website you will find even more projects and resources around home automation and open-source hardware.

Also, if at any moment you are encountering an issue while reading this book, like some code that wont compile or a project that doesnt work, please contact me directly on the following email:

Also, if you bought this book on the Amazon Kindle platform, it would be amazing if you could leave a review there. It helps me a lot to get feedback about the book, and to create an even better edition of the book in the future. Thanks!

Ever saw those wireless security cameras that you can buy off the shelf? These are devices that you can setup somewhere in your home or outside, connect to your WiFi network, and then automatically take pictures if some motion is detected, for example. However, they are usually using the interface given by the manufacturer, which means you are quite limited with what you can do with your camera.

In this book, we are going to build our own DIY version of such devices. The project is based on the Arduino Yun, to which we are going to connect a standard USB webcam and a PIR motion sensor to create several cool applications.

The first application will be about testing the camera, and then making it stream video within your own WiFi network, so you can monitor it live from your web browser when you are at home.

Then, we will build on what we did in this first project, and make the camera send the stream online, so it can be accessed from anywhere in the world. Well actually also make the camera stream data on Youtube, so you can share the stream with other people & monitor your home live even from a mobile device!

Finally, the last project will be a modern version of a standard task that you expect from a security camera: taking pictures when some motion is detected. The project will store pictures taken by the USB camera on an SD card inserted into the Yun, but thats not all.

Because we are in the age of the Internet of Things, we also want these pictures to be automatically uploaded on a secure location. And thats exactly what we are going to do by uploading the pictures to Dropbox at the same time. Excited? Lets dive in!

The first step in this book is to make sure you have the right hardware components. First off, you will need an Arduino Yun, and a PIR motion sensor.

For the USB camera, you can choose any webcam that is compatible with the UVC protocol. Most of the recent webcams are compatible. I chose a Logitech C270 that can take pictures up to 720p resolution. You can find a list of compatible cameras here:

http://en.wikipedia.org/wiki/List_of_USB_video_class_devices

You will also need a microSD card to store the pictures locally on your Arduino Yun, and some female/male jumper wires to connect the PIR motion sensor.

This a list of the components that are required for this project:

  • Arduino Yun (https://www.adafruit.com/product/1498)
  • USB webcam (http://www.logitech.com/en-us/product/hd-webcam-c270)
  • PIR motion sensor (https://www.adafruit.com/product/189)
  • MicroSD card (https://www.adafruit.com/products/102)
  • Some female/male jumper wires (https://www.adafruit.com/products/825)

The first step is to insert the SD card in the Arduino Yun board:

Then connect the camera to the USB port of the Yun Finally connect the - photo 1

Then, connect the camera to the USB port of the Yun:

Finally connect the motion sensor to the Yun Simply connect the VCC pin to - photo 2

Finally, connect the motion sensor to the Yun. Simply connect the VCC pin to the Yun 5V pin, GND to GND, and the SIG pin to the Yun pin number 8:

Finally just connect the project to your computer via the microUSB port and - photo 3

Finally, just connect the project to your computer via the microUSB port, and youre good to go!

Before we can build any applications using the hardware we just built, we need to configure your Yun board for the first use. Of course, if you already have a Yun up & running, you can skip this chapter entirely.

Once your Yun is starting for the first time, it will automatically create a WiFi network that with Yun inside the name, so it is easy to identify:

Now connect to this network using your computer Once thats done enter this - photo 4

Now, connect to this network using your computer. Once thats done, enter this IP address in your favorite web browser:

192.168.240.1

You will be redirected to a page which is actually hosted on the Yun itself, asking you for a password:

By default the password is arduino You will then be redirected to the main - photo 5

By default, the password is arduino. You will then be redirected to the main page on your Yun, where you can for example set a new password:

Now click on Configure The goal here is to make your Yun connect to your - photo 6

Now, click on Configure. The goal here is to make your Yun connect to your local WiFi network. Find your local network in the list, and enter your WiFi network password:

Then click on Configure Restart You Yun will then reboot and attempt to - photo 7

Then, click on Configure & Restart. You Yun will then reboot, and attempt to connect to your WiFi network. Once thats done, the USB LED should turn white on the Yun, and your Yun is now ready to be used!

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Building a Wireless Security Camera with Arduino»

Look at similar books to Building a Wireless Security Camera with Arduino. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Building a Wireless Security Camera with Arduino»

Discussion, reviews of the book Building a Wireless Security Camera with Arduino and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.