Security Camera. by maartenbrysbaert. The SeCam is a security camera that allows you to: - Livestream. - Rotate your camera 180 degrees

Size: px
Start display at page:

Download "Security Camera. by maartenbrysbaert. The SeCam is a security camera that allows you to: - Livestream. - Rotate your camera 180 degrees"

Transcription

1 instructables Security Camera by maartenbrysbaert The SeCam is a security camera that allows you to: - Livestream - Rotate your camera 180 degrees - Capture and record - View captured photos and recorded videos - Turn on an alarm and led when there is motion detected (in this version the motion sensor is replaced by an button because the motion sensor was broken) Security Camera: Page 1

2 Step 1: Necessities and Materials Necessities: 1. Raspberry Pi B 3 2. SD Card 3. Raspberry Pi camera V2 NoIR 4. Led Light 5. Active buzzer 6. Servo Motor 7. 2 resistors 220 Ohm 8. PIR motion sensor 9. Ethernet cable 10. Wood 11. Toothpick 12. Fine iron wire Materials: 1. Screwdriver 2. Tape 3. Solder 4. Arduino jumper cables 5. Glue Security Camera: Page 2

3 raspberry pi b3 1. SD Card 32 Gb blue led 1. Piezzo active buzzer 5V servo motor 1. resistor 220 Ohm Security Camera: Page 3

4 1 1. Pir Motion sensor wood 1. fine iron wire 2. toothpick Security Camera: Page 4

5 1 1. jumper cables (male and female) Download ( ( Step 2: Set Up Raspberry Pi 1. Download the image on the SD card: 2. Connect with SSH (with putty) username: pi, password: root. 3. Enable PiCam in the raspi-config menu with command 'sudo raspi-config'. Security Camera: Page 5

6 Step 3: Set Up MySql on Raspberry Pi 1. Download MySql (see picture) 2. Make user (see picture, remember password and username) 3. Copy DDL code below and execute this to create the database. create table account ( ID int auto_increment primary key, username varchar(45) null, first_name varchar(45) null, last_name varchar(45) null, varchar(45) null, password varchar(45) null ) ; create table media ( ID int auto_increment primary key, type tinyint null, name varchar(45) default 'naamloos' null, date datetime null, triggered tinyint null ) ; create table settings ( ID int auto_increment primary key, securitymode tinyint null, pan int null, alarm tinyint null, led tinyint null, tinyint null ) ; 4. insert data use securitycam; insert into account(id, username, first_name, last_name, , password) VALUES (1, 'admin', 'admin', 'admin', 'admin@admin.be', 'admin'); insert into settings(id, securitymode, pan, alarm, led, ) VALUES (1, 1, 0, 1, 1, 0); Step 4: Set Up Pistreaming install libav-tools with this command: sudo apt-get install libav-tools git python3-picamera python3-ws4py Security Camera: Page 6

7 Step 5: Download Code From Github Download the following github code on your raspberry pi. Step 6: Custumize Code to Your Choices. Change username and password on top of "DbClass" to the username and password you chose in step 3. Step 7: Run Script by Startup Raspberry Pi Connect again to your raspberry pi with SSH and open '.bashrc' with this command: "sudo nano /home/pi/.bashrc" Then go to the bottom of the file and add "sudo python /path/project_v2/project_v2.py &". Replace 'path' with your own path. Step 8: Attach Picam to Servomotor Use toothsticks and iron wire to attach the camera to the servomotor. Try to make the same as shown on the picture. Security Camera: Page 7

8 Step 9: Build Housing 1. Create bottom: Saw some MDF wood with following measures: 16cm x 8cm x 2cm 2. Create top: Saw another piece of MDF wood: 16cm x 8cm x 0.5cm and saw some slots for the servo motor, picam cable, led and PIR motion sensor cables. (see pictures) 3. create walls: Saw 1 piece MDF wood: 8cm x 4cm x 2cm Saw 1 piece MDF wood: 5.5cm x 4cm x 2cm 4. attach raspberry pi on bottom: Measure where the 2 screws should be inserted, and draw the points on the wood. Then put the screws in using a screwdriver. (see picture) Security Camera: Page 8

9 Security Camera: Page 9

10 Security Camera: Page 10

11 Step 10: Solder Everything Solder all components so they have a female output that can easily be connected to the GPIO pins of the raspberry pi. Be sure to sold an resistor of 220 ohm between the led and ground. Then isolate with tape. Security Camera: Page 11

12 Step 11: Attach Jumpers to Raspberry Pi Build circuit using the pictures. Be sure that the raspberry pi is turned off while doing this! 1. Plug in the picam into the raspberry pi. (see picture) 2. Attach soldered components to raspberry pi pins. (see picture) - The red cable of servomotor into 5V, brown into GND and orange cabel into pin "+" from buzzer into pin 13, "-" into GND - "+" from led into pin 26, "-" into GND - VCC from motion sensor into 5V, GND into GND and OUT into pin 21. use this link to get to know which pins are GND, 5V or GPIO pins. Security Camera: Page 12

13 Step 12: Finish of Housing 1. Drill some holes in top of the housing for the led and motion sensor. Put them through the holes. 2. Put the servomotor through the provided slot and fix it with a screw. 3. Glue the wooden walls. 4. You can continue building as much as you want, you can make the top detachable etc. Security Camera: Page 13

14 Security Camera: Page 14

15 Step 13: Final Steps Setup wifi on the raspberry: command: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf then add: network={ ssid="network name" psk="password" key_mgmt=wpa-psk reboot the pi Find out which ip address the raspberry pi received (with command: 'ifconfig'). Wait 1-2 minutes. Surf to: 'ipaddress:5000'. You will first have to login with: username: admin, password: admin. Then you wil see the livestream and options! } Security Camera: Page 15

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett RaspiDigiHamClock Raspberry Pi Amateur Radio Digital Clock v2018-07-08 WA4EFH R.Grokett Overview Amateur Radio Operators (aka HAM Radio) use 24 hour UTC (Universal Coordinated Time) for much of their operation.

More information

9 Output Devices: Buzzers

9 Output Devices: Buzzers 9 Output Devices: Buzzers Project In this project, you will learn how to connect and control LEDs (Light Emitting Diode) and a buzzer with the Raspberry Pi. Components In addition to your Raspberry Pi,

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

RFID Security System. by Balding_Lama

RFID Security System. by Balding_Lama instructables RFID Security System by Balding_Lama This is an alarm system which you can use at home. The alarm system is capable of telling you who's inside your home and is also capable of automatically

More information

Getting started with Raspberry Pi (and WebIoPi framework)

Getting started with Raspberry Pi (and WebIoPi framework) Getting started with Raspberry Pi (and WebIoPi framework) 1. Installing the OS on the Raspberry Pi Download the image file from the Raspberry Pi website. It ll be a zip file as shown below: Unzip the file

More information

Docking station. Technical Documentation

Docking station. Technical Documentation Docking station Technical Documentation Version 1.1 Release date: 01.09.2015 Table of contents 1 Introduction...3 2 Layout and dimensions...4 3 What s included in the box...4 4 Connecting devices...5 4.1

More information

Raspberry Pi Class Ed 299. Mike Davis Truman College 5/26/2015

Raspberry Pi Class Ed 299. Mike Davis Truman College 5/26/2015 Raspberry Pi Class Ed 299 Mike Davis Truman College 5/26/2015 Goals for Today Discuss Raspberry Camera Projects Fruit Rotting Air Powered Car Photo booth Use a Python Program to control the camera Copy,

More information

CamJam EduKit Sensors Worksheet Five. Equipment Required. The Parts. The Passive Infrared Sensor

CamJam EduKit Sensors Worksheet Five. Equipment Required. The Parts. The Passive Infrared Sensor CamJam EduKit Sensors Worksheet Five Project Description Passive Infrared Sensor In this project, you will learn how to wire and program a passive infrared sensor that detects movement near it. Equipment

More information

SEAS Computing Facility Raspberry Pi Workshop 2: I/O Camera & Motion Sensor. October 21, 2017

SEAS Computing Facility Raspberry Pi Workshop 2: I/O Camera & Motion Sensor. October 21, 2017 SEAS Computing Facility Raspberry Pi Workshop 2: I/O Camera & Motion Sensor October 21, 2017 Overview for Today Learn about new components Program a push-button ON/OFF input system for LED Connect and

More information

Home Automation & Security Projects for Raspberry Pi (Book 2) Tim Rustige

Home Automation & Security Projects for Raspberry Pi (Book 2) Tim Rustige Home Automation & Security Projects for Raspberry Pi (Book 2) Tim Rustige Home Automation & Security Projects for Raspberry Pi (Book 2) Tim Rustige First published: May 2017 Published by TR Computers Limited.

More information

Run an X-Carve CNC Machine Wirelessly with a Raspberry Pi

Run an X-Carve CNC Machine Wirelessly with a Raspberry Pi Run an X-Carve CNC Machine Wirelessly with a Raspberry Pi Created by Todd Treece Last updated on 2015-08-18 01:20:14 PM EDT Guide Contents Guide Contents Setting Up the Proxy Hardware Requirements Raspberry

More information

Necessary software and hardware:

Necessary software and hardware: Necessary software and hardware: Bases: First, remember that I m a French guy so my English is not perfect ;) If you see any mistakes, don t hesitate to tell me so I can correct them (my email is at the

More information

Pi PoE Switch HAT Quick Start And FAQ. Getting started. Kit contents

Pi PoE Switch HAT Quick Start And FAQ. Getting started. Kit contents Pi PoE Switch HAT Quick Start And FAQ Getting started The Pi PoE Switch HAT is an add on board for the Raspberry Pi that brings the Switch technology together with PoE all in one fantastic package! You

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

Adafruit's Raspberry Pi Lesson 6. Using SSH

Adafruit's Raspberry Pi Lesson 6. Using SSH Adafruit's Raspberry Pi Lesson 6. Using SSH Created by Simon Monk Last updated on 2017-08-16 01:12:07 AM UTC Guide Contents Guide Contents Overview Enabling SSH Using a blank boot file Using Raspi-Config

More information

USB Type A Female Breakout Hookup Guide

USB Type A Female Breakout Hookup Guide Page 1 of 7 USB Type A Female Breakout Hookup Guide Introduction If you have a microcontroller that can act as a USB host, then you will need a way to plug in USB cables and devices. The USB Type A Female

More information

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack!

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! Topics What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! What is a Raspberry Pi? The Raspberry Pi is a Credit Card sized computer.

More information

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino,

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino, A Accessor methods, 92 Adafruit, 9 Adafruit DC & Stepper Motor HAT assembling board adjustment, 199 circuit board, 199 kit, 197 pins, 197 preparation, 197 Raspberry Pi, 198, 204 removal, 201 rotation,

More information

Theo. Miles. Olivia. Joseph. Nina. Kishan. The Richard Pate School, Cheltenham

Theo. Miles. Olivia. Joseph. Nina. Kishan. The Richard Pate School, Cheltenham Theo Miles Olivia Joseph Nina Kishan Summary We have developed a system to help old/disabled people answer the door, especially people who have difficulty walking or walk slowly. The system uses the Raspberry

More information

AlphaBot2 robot building kit for Raspberry Pi 3 Model B

AlphaBot2 robot building kit for Raspberry Pi 3 Model B AlphaBot2 robot building kit for Raspberry Pi 3 Model B SKU 110060863 Description This AlphaBot2 robot kit is designed to use with Raspberry Pi 3 Model B. It features rich common robot functions including

More information

Installation guide. Step1. Install the OS for Raspberry Pi 3. Go to to download Raspbian to the PC.

Installation guide. Step1. Install the OS for Raspberry Pi 3. Go to   to download Raspbian to the PC. Installation guide Step1. Install the OS for Raspberry Pi 3 Go to https://www.raspberrypi.org/downloads/ to download Raspbian to the PC. Unzip 2017-01-11-raspbian-jessie.zip and you will get a disc image

More information

Outdoor Motorized Dome. Quick Installation Guide 86085A

Outdoor Motorized Dome. Quick Installation Guide 86085A Outdoor Motorized Dome Quick Installation Guide 86085A3340020 Outdoor Motorized Dome Quick Installation Guide Please follow the installation steps below to set up Outdoor Motorized Dome IP Camera. Check

More information

Building a standalone access point using a Raspberry Pi Zero W

Building a standalone access point using a Raspberry Pi Zero W Building a standalone access point using a Raspberry Pi Zero W by Barry Robinson The Raspberry Pi Zero W is a small, single board computer (SBC) that has WiFi and Bluetooth connectivity built-in. It is

More information

Warning Before Installation. Package Contents EN - 1. Refer to your user's manual for the operating temperature.

Warning Before Installation. Package Contents EN - 1. Refer to your user's manual for the operating temperature. 510000221G Warning Before Installation English Power off the Network Camera as soon as smoke or unusual odors are detected. Do not place the Network Camera on unsteady surfaces. Do not insert sharp or

More information

Quick Start Guide. GV-Fisheye IP Camera. 1 Introduction. Packing List

Quick Start Guide. GV-Fisheye IP Camera. 1 Introduction. Packing List 1 Introduction Welcome to the GV-Fisheye IP Camera Quick Start Guide. In the following sections, you will learn the basic installations and configurations of GV-Fisheye IP Camera. For the detailed user

More information

IoE Workshop. Marc Khayat, CCIE #41288, Leonard Janer Technical Managers. June 16

IoE Workshop. Marc Khayat, CCIE #41288, Leonard Janer Technical Managers. June 16 IoE Workshop Marc Khayat, CCIE #41288, makhayat@cisco.com Leonard Janer ljaner@inlea.com Technical Managers June 16 2015 Cisco and/or its affiliates. All rights reserved. Cisco Public 2 2016 Cisco and/or

More information

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper A Step by Step Guide to Installing VPN on Raspberry Pi Whitepaper Introduction For security conscious IT experts who would like to provide secure access to their network on a budget, this whitepaper provides

More information

RETROPIE INSTALLATION GUIDE

RETROPIE INSTALLATION GUIDE RETROPIE INSTALLATION GUIDE CONTENTS THE FOLLOWING GUIDE WILL COVER THE INSTALLATION, SETUP AND CONFIGURATION OF THE RASPBERRY PI, RASPBIAN OS AND RETROPIE Author: http://rpiarcadebuild.wordpress.com/

More information

Connect the GSM-DSA to a router where the network is configured to x with a mask

Connect the GSM-DSA to a router where the network is configured to x with a mask GSM-DSA Application note Summary Preparing the raspberry pi environment In order to make the most out of your GSM-DSA, it is best to make sure that the operation system is up to date. To do this we need

More information

The DVT Ethernet IO Module (CON-IOE)

The DVT Ethernet IO Module (CON-IOE) The DVT Ethernet IO Module (CON-IOE) Revision 4 (11/11/04) DVT Corporation DVT Corporation Installation of DVT Ethernet IO Module (CON-IOE) Hardware Mechanical Installation: The CON-IOE is designed to

More information

VITEK QUICK START GUIDE VTD-TND30R3V2 VTD-TND30R5V2 VTD-TND30R4M2

VITEK QUICK START GUIDE VTD-TND30R3V2 VTD-TND30R5V2 VTD-TND30R4M2 VITEK VTD-TND30R3V2 VTD-TND30R5V2 VTD-TND30R4M2 3.0, 4.0, and 5.0 Megapixel Indoor/Outdoor WDR IP IR Dome Cameras QUICK START GUIDE FEATURES 1/3 Megapixel Progressive Scan CMOS image sensor Up to 30fps

More information

PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 10kΩ Resistor OTHER PARTS YOU MAY NEED

PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 10kΩ Resistor OTHER PARTS YOU MAY NEED PARTS LIST 1 x PC Board 36 x 5mm Red LED 36 x 12mm LED Standoff 36 x NPN Transistor 36 x 150Ω Resistor 36 x 10kΩ Resistor 17 x Mini Toggle on-off 8 x Mini Toggle (on)-off-(on) 1 x 470Ω Resistor 1 x 47µF

More information

Issue : 1.1 Date : 19/1/2004. Trigger IO. C-Cam Technologies. a division of. Vector International 1 / 6

Issue : 1.1 Date : 19/1/2004. Trigger IO. C-Cam Technologies. a division of. Vector International 1 / 6 Trigger IO C-Cam Technologies a division of Vector International 1 / 6 1 Trigger IO connector Trigger IO connector Camera with LS interface Trigger IO connector Camera with USB interface 2 / 6 1.1 Pin

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

Ding Dong, You've Got Mail! A Lab Activity for Teaching the Internet of Things

Ding Dong, You've Got Mail! A Lab Activity for Teaching the Internet of Things Teaching Case Ding Dong, You've Got Mail! A Lab Activity for Teaching the Internet of Things Mark Frydenburg mfrydenberg@bentley.edu Computer Information Systems Department Bentley University Waltham,

More information

Getting Started Guide XC9010 Raspberry Pi Starter Kit

Getting Started Guide XC9010 Raspberry Pi Starter Kit Getting Started Guide XC9010 Raspberry Pi Starter Kit The Raspberry Pi has been designed as a computer that anyone can use. If you want to get started with a Raspberry Pi, but don t know where to start,

More information

Quick Start Guide. GV-Fisheye IP Camera

Quick Start Guide. GV-Fisheye IP Camera Quick Start Guide GV-Fisheye IP Camera Thank you for purchasing GV-Fisheye IP Camera. This guide is designed to assist the new user in getting immediate results from the GV-Fisheye IP Camera. For advanced

More information

How to hardwire the Sony DSC-W35 Digital Camera

How to hardwire the Sony DSC-W35 Digital Camera How to hardwire the Sony DSC-W35 Digital Camera Copyright, PixController http://www.pixcontroller.com, all rights reserved. Rev. A 3/20/07 This document covers in detail how to modify the Sony DSC-W35

More information

IS-DM320, HB User Manual. Ver 1.0

IS-DM320, HB User Manual. Ver 1.0 IS-DM320, HB User Manual Ver 1.0 Sentry360 2014 Table of Contents 1. Overview... 3 1.1 Features... 3 1.2 Package Contents... 4 1.3 Dimensions... 5 1.4 Connectors... 6 2. Camera Cabling... 7 2.1 Connect

More information

Atlas iot. Installation guide V 1.0

Atlas iot. Installation guide V 1.0 Atlas iot Installation guide V 1.0 Necessary items Before we begin have the following items readily available: SanDisk ultra micro SDHC, 16 gb card USB micro SD card reader Raspberry Pi 7 touchscreen Raspberry

More information

Installation guide for IP Camera G2

Installation guide for IP Camera G2 Installation guide for IP Camera G2 Part I: Mobile Network connection For better experience the convenience that brought by this product, please download mobile phone software before using this product.

More information

ZeroView. Raspberry Pi Camera Module Suction Mount User Guide and Information. Product Page: ThePiHut.com/zeroview

ZeroView. Raspberry Pi Camera Module Suction Mount User Guide and Information. Product Page: ThePiHut.com/zeroview ZeroView Raspberry Pi Camera Module Suction Mount User Guide and Information Product Page: ThePiHut.com/zeroview 2 Guide Contents Introduction 3 Design Features 4 Kit Contents 5 Assembly 6 Enabling the

More information

2M IR Mini Dome Quick Installation Guide

2M IR Mini Dome Quick Installation Guide 1 2M IR Mini Dome Quick Installation Guide Please follow the installation steps below to set up 2M IR Mini Dome IP Camera. Check the package contents against the list below. See P.1 Physical overview.

More information

HD HOME SECURITY AND DVR SYSTEM. Quick Start Guide. What s inside. For the complete user guide...

HD HOME SECURITY AND DVR SYSTEM. Quick Start Guide. What s inside. For the complete user guide... HD HOME SECURITY AND DVR SYSTEM Quick Start Guide What s inside Getting started... 2 Step 1: Unpack... 2 Step 2: Mount the cameras... 3 Step 3: Connect cameras to the DVR... 4 Step 4: Connect the DVR to

More information

Networked Thermal Printer using Raspberry Pi and CUPS

Networked Thermal Printer using Raspberry Pi and CUPS Networked Thermal Printer using Raspberry Pi and CUPS Created by Phillip Burgess Last updated on 2017-12-18 09:16:47 PM UTC Guide Contents Guide Contents Overview First-Time System Setup Connect and Configure

More information

I2CMux Grove Board 0057-GRV4I2CMux-DSBT/ SF

I2CMux Grove Board 0057-GRV4I2CMux-DSBT/ SF Features and Benefits: The is an easy to use 4 Channel I2C Multiplexer. The I2C Mux Breakout Board is a quad bidirectional translating switch controlled via the I2C bus. The SCL/SDA controlling fans out

More information

IPC0122P3 / IPC0122WP P HD Covert (WIFI) IP Camera. Quick Installation Guide

IPC0122P3 / IPC0122WP P HD Covert (WIFI) IP Camera. Quick Installation Guide IPC0122P3 / IPC0122WP3 1080P HD Covert (WIFI) IP Camera Quick Installation Guide Do not drop or strike this equipment CAUTION Do not install the equipment near any naked flames or heat sources Do not expose

More information

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: June 20,

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: June 20, TKEY-1 CW touch key (no electromechanical contacts) Assembly manual Last update: June 20, 2017 ea3gcy@gmail.com Updates and news at: www.ea3gcy.com Thanks for constructing the TKEY-1A CW touch key Have

More information

Network Box Camera Quick Guide

Network Box Camera Quick Guide 1 Network Box Camera Quick Guide V3.0.0 Hangzhou Hikvision Digital Technology Co., Ltd. http://www.hikvision.com 2010-04 1 1.Camera Description 1.1 Side Panel Description Serial NO. Description 1 Lens

More information

INSTALLATION INSTRUCTION MANUAL

INSTALLATION INSTRUCTION MANUAL Megapixel IP PTZ Camera INSTALLATION INSTRUCTION MANUAL 1 Contents How to Install and Configure Mezory IP PTZ Camera.. 3 Installing MEZORY IP PTZ Camera... 4 Finding the IP Address... 6 Access and Configure

More information

ZAVIO Outdoor IR Mini Dome. Quick Installation Guide

ZAVIO Outdoor IR Mini Dome. Quick Installation Guide ZAVIO Outdoor IR Mini Dome Quick Installation Guide 0 Quick Installation Guide Please follow the installation steps below to set up your IP Camera. Check the package contents with the list below. See P.1

More information

SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V

SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V2.0 2013-07-06 1 2 The following items should be present in your package Network Pan/Tilt IP Camera AC power adapter (12V DC, 2A) Wall mounting

More information

Quick Start Guide. GV-Video Server. 1 Introduction. Packing List

Quick Start Guide. GV-Video Server. 1 Introduction. Packing List Introduction Quick Start Guide GV-Video Server Welcome to the GV-Video Server Quick Start Guide. In the following sections, you will learn about the basic installations and configurations of the GV-Video

More information

2M Outdoor Motorized Bullet Camera

2M Outdoor Motorized Bullet Camera 2M Outdoor Motorized Bullet Camera 8608586000010 Quick Installation Guide Please follow the installation steps below to set up your 2MP Bullet IP Camera. Check the package contents against the list below.

More information

P6210 PN: 86085A A

P6210 PN: 86085A A P6210 1 PN: 86085A1000010 86085A1000000 Zavio P6210 Quick Installation Guide Please follow the installation steps below to set up P6210 Pan/Tilt IR Dome IP Camera. Check the package contents against the

More information

Warning Before Installation. Package Contents EN - 1. Refer to your user s manual for the operating temperature.

Warning Before Installation. Package Contents EN - 1. Refer to your user s manual for the operating temperature. 5000020G Warning Before Installation English Power off the Network Camera as soon as smoke or unusual odors are detected. Do not place the Network Camera on unsteady surfaces. Do not insert sharp or tiny

More information

Manual to install experimental firmware on a TYTERA MD380

Manual to install experimental firmware on a TYTERA MD380 By Erik, PA0ESH. Monday 28 November 2016 I've been a while in the possession of a MD380/390 Tytera to experiment with DMR. This Chinese MD380/390 is a delight in use and with the support of Arjan Hogt,

More information

MACRO MODCHIP FOR XBOX360 CG2 INSTALLATION INSTRUCTIONS

MACRO MODCHIP FOR XBOX360 CG2 INSTALLATION INSTRUCTIONS MACRO MODCHIP FOR XBOX360 CG2 INSTALLATION INSTRUCTIONS List of tools and materials needed: Modchip, flexible LED add-on board, 6 tac switches Microsoft wireless CG2 controller Soldering iron and thin

More information

3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions

3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions 3 pyro output datalogger altimeter with an ATmega 328 microcontroller Kit assembly instructions Version date Author Comments 1.0 29/05/2013 Boris du Reau Initial version Rocket Type Micro-max Model Mid

More information

Single cable kit for the FCB1010

Single cable kit for the FCB1010 Single cable kit for the FCB1010 1. What is it? With this kit, you can turn your FCB1010 into a phantom powered floorboard, which can do 2-way MIDI communication over one single cable. After installing

More information

Raspberry PI 'How-To' Series

Raspberry PI 'How-To' Series Raspberry PI 'How-To' Series AOSONG AM2315 Temperature Sensor Implementation Guide Update Written by: Sopwith Revision 3.0 February 1, 2019 sopwith@ismellsmoke.net 1 Introduction Here we are in February

More information

Table of Contents. Camera Anatomy... pg 1. Package Contents... pg 2. Camera Assembly... pg 3. Account Login... pg 5. Adding a New Camera...

Table of Contents. Camera Anatomy... pg 1. Package Contents... pg 2. Camera Assembly... pg 3. Account Login... pg 5. Adding a New Camera... Table of Contents Camera Anatomy... pg 1 Package Contents... pg 2 Camera Assembly... pg 3 Account Login... pg 5 Adding a New Camera... pg 6 Wireless Configuration... pg 9 WPS Enabled Routers... pg 13 Technical

More information

Raspberry Pi 3 Starter Kit Hookup Guide

Raspberry Pi 3 Starter Kit Hookup Guide Page 1 of 11 Raspberry Pi 3 Starter Kit Hookup Guide Introduction Now that the Raspberry Pi 3 is the latest and greatest in the line of Raspberry Pi Single Board Computers, what s new? This hookup guide

More information

Network Box Camera Quick Guide

Network Box Camera Quick Guide 1 Network Box Camera Quick Guide V3.0.0 Hangzhou Hikvision Digital Technology Co., Ltd. http://www.hikvision.com 2010-04 1 1.Camera Description 1.1 Side Panel Description Side Panel 1: Side Panel 2: Serial

More information

Installation Guide Serial Interface T942SI

Installation Guide Serial Interface T942SI Installation Guide 2003-02-8/ Ver. C Contents.... General... 2 Board Description... 2 3 Installation... 4 3. Mounting... 4 3.2 Opening the Housing... 4 3.3 Mounting together with other Units... 5 3.4 Wiring

More information

High Voltage Module Raspberry Pi Documentation Page 1

High Voltage Module Raspberry Pi Documentation Page 1 Raspberry Pi Setup High Voltage Documentation Instrumentation Development Lab Department of Physics and Astronomy University of Hawaii at Manoa AUTHOR: Cameron Asaoka DATE: 7/6/2017 High Voltage Module

More information

User Manual. Wireless IP Camera

User Manual. Wireless IP Camera User Manual Wireless IP Camera Introduction Hi. Thank you for purchasing the AUKEY VT-CM1 Wireless Security IP Camera. Please read this user manual carefully and keep it in a safe place for future reference.

More information

MegaPi Born to Motion Control

MegaPi Born to Motion Control MegaPi Born to Motion Control SKU: 10050 Weight: 130.00 Gram 1. Overview MegaPi is a main control board specially designed for makers and also an ideal option for being applied to education field and all

More information

VITEK VTD-TND4RMS FEATURES

VITEK VTD-TND4RMS FEATURES VITEK VTD-TND4RMS Transcendent Series 4 Megapixel H.265 Indoor/ Outdoor WDR IP Dome Camera with 30 IR LED Illumination & Motorized Varifocal Lens QUICK START GUIDE FEATURES 1/3 4.0 Megapixel Progressive

More information

Compute Module IO Board Plus User Manual

Compute Module IO Board Plus User Manual Compute Module IO Board Plus User Manual OVERVIEWS This is an Expansion board of Compute Module 3 and Compute Module 3 Lite. It is compatible with Compute Module IO Board V3 from Raspberry Pi Foundation,

More information

Rover 5. Explorer kit

Rover 5. Explorer kit Rover 5 Explorer kit The explorer kit provides the perfect interface between your Rover 5 chassis and your micro-controller with all the hardware you need so you can start programming right away. PCB Features:

More information

Gooligum Electronics 2015

Gooligum Electronics 2015 The Wombat Prototyping Board for Raspberry Pi Operation and Software Guide This prototyping board is intended to make it easy to experiment and try out ideas for building electronic devices that connect

More information

reef-pi Guide 4: Water Level Controller

reef-pi Guide 4: Water Level Controller reef-pi Guide 4: Water Level Controller Created by Ranjib Dey Last updated on 2018-10-03 09:11:56 PM UTC Guide Contents Guide Contents Overview Parts Circuit Construction Building the Housing Configuration

More information

wordclock_for_rpi Documentation

wordclock_for_rpi Documentation wordclock_for_rpi Documentation Release 0.0.1 Bernd Krolla Oct 25, 2017 Contents 1 General considerations 1 1.1 If you want to build a wordclock..................................... 1 2 Hardware setup

More information

!There are two kit models. The ZCTK-120 is designed to operate with.!the pulse output is isolated from the mains line voltage. A pull-up resistor

!There are two kit models. The ZCTK-120 is designed to operate with.!the pulse output is isolated from the mains line voltage. A pull-up resistor CAUTION: Please make sure you have or have access to the skills necessary to assemble and use this product. Always secure the case with the included screws before applying electrical power to the power

More information

Raspberry Pi GPIO Zero Reaction Timer

Raspberry Pi GPIO Zero Reaction Timer Raspberry Pi GPIO Zero Reaction Timer Tutorial by Andrew Oakley Public Domain 1 Feb 2016 www.cotswoldjam.org Introduction This Python programming tutorial, shows you how simple it is to use an LED light

More information

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Created by lady ada Last updated on 2017-08-29 10:20:23 PM UTC Guide Contents Guide Contents Overview Pinouts Enabling Serial Console Option

More information

IPC P HD Door Station IP Camera. Quick Installation Guide

IPC P HD Door Station IP Camera. Quick Installation Guide IPC0522 1080P HD Door Station IP Camera Quick Installation Guide Do not drop or strike this equipment CAUTION Do not install the equipment near any naked flames or heat sources Do not expose this unit

More information

Table of Contents Overview... 2 Camera Cabling... 8 System Requirements Access Camera Setup Video Resolution... 18

Table of Contents Overview... 2 Camera Cabling... 8 System Requirements Access Camera Setup Video Resolution... 18 Table of Contents 1. Overview... 2 1.1 Features... 2 1.2 Package Contents... 3 1.3 Dimensions... 5 1.4 Connectors (Indoor Only)... 6 1.5 Function Cables (Outdoor Only)... 7 2. Camera Cabling... 8 2.1 Power

More information

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture - 30 Implementation of IoT with Raspberry Pi- I In the

More information

FCB1010 Phantom Power Adaptor

FCB1010 Phantom Power Adaptor FCB1010 Phantom Power Adaptor The Behringer FCB1010 pedal is normally powered by an external cable that plugs into a standard 120 volt 3-prong wall receptacle. While this works fine, it does require a

More information

Cygnos360 V2 Installation Manual

Cygnos360 V2 Installation Manual VERSION 1.0. - OKTOBER, 2009 www.cygnos360.com Contents: 1. What you need...2 1.1. Tools...2 2. Preparation...3 2.1. Preparing the solder points...3 3. Installing in your Xbox360...4 3.1. Installing the

More information

Industrial IP67-rated 4-Port 10/100/1000T at PoE + 2-Port 10/100/1000T. Managed Ethernet Switch. (-40~75 degrees C) IGS-604HPT-RJ

Industrial IP67-rated 4-Port 10/100/1000T at PoE + 2-Port 10/100/1000T. Managed Ethernet Switch. (-40~75 degrees C) IGS-604HPT-RJ Industrial IP67-rated 4-Port 10/100/1000T 802.3at PoE + 2-Port 10/100/1000T Managed Ethernet Switch (-40~75 degrees C) IGS-604HPT-RJ Quick Installation Guide Table of Contents 1. Package Contents... 3

More information

F3102 / F3107 / F3110 / F3115 / F3210 / F3215 PN: 86085K K

F3102 / F3107 / F3110 / F3115 / F3210 / F3215 PN: 86085K K F3102 / F3107 / F3110 / F3115 / F3210 / F3215 86085K3000020 PN: 86085K3000030 Zavio F3102/F3107/F3110/F3115/F3210/F3215 Quick Installation Guide Please follow the installation steps below to set up F3102

More information

Warning Before Installation

Warning Before Installation Warning Before Installation English Power off the Network Camera as soon as smoke or unusual odors are detected. Refer to your user's manual for the operating temperature. Contact your distributor in the

More information

Connecting a Cisco Reader Module

Connecting a Cisco Reader Module CHAPTER 3 Overview The optional Cisco Reader Module (Figure 3-1) is similar to the Cisco Physical Access Gateway, providing the same ports for Weigand readers and other input and output devices. The Cisco

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

Replicape Rev B 3D printer controller board

Replicape Rev B 3D printer controller board Replicape Rev B 3D printer controller board SKU 102991007 Description Replicape is a high end 3D printer electronics package in the form of a Cape that can be placed on a BeagleBone Black. This page is

More information

Roughneck V920D Series Camera Domes XX Quick Guide

Roughneck V920D Series Camera Domes XX Quick Guide Quick Guide XX258-20-06 Roughneck V920D Series Camera Domes Vicon Industries Inc. Tel: 631-952-2288 Fax: 631-951-2288 Toll Free: 800-645-9116 24-Hour Technical Support: 800-34-VICON (800-348-4266) UK:

More information

Raspberry Pi Compute Development board

Raspberry Pi Compute Development board Raspberry Pi Compute Development board TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect,

More information

Table of Contents 1 Appearance Description Overview Installing SD Card Installation Accessing via Phones Software

Table of Contents 1 Appearance Description Overview Installing SD Card Installation Accessing via Phones Software Camera Network Mini PT Dome Camera Quick Start Guide Table of Contents 1 Appearance Description... 2 1.1 Overview...2 1.2 Installing SD Card...5 2 Installation... 6 3 Accessing via Phones... 8 4 Software

More information

Model: K0073. Smart Robot Car Kit Quick Start Guide

Model: K0073. Smart Robot Car Kit Quick Start Guide Model: K0073 Smart Robot Car Kit Quick Start Guide Smart Robot Car Kit Smart Robot Car Kit M2 nuts 4 pieces M24 micro servo screws 2 bars PTZ self-tapping screws 4 bars M210 round head screws 4 bars 15

More information

Quick Start Guide. GV-Fisheye IP Camera

Quick Start Guide. GV-Fisheye IP Camera Quick Start Guide GV-Fisheye IP Camera Thank you for purchasing GV-Fisheye IP Camera. This guide is designed to assist the new user in getting immediate results from the GV-Fisheye IP Camera. For advanced

More information

Digital Keypad Introduction

Digital Keypad  Introduction K2 Digital Keypad Introduction The K02 uses the latest microprocessor technology to operate door strikes and security systems that require a momentary (timed) or latching dry contact closure. All programming

More information

Connecting igaging DigiMAG Scales to the Caliper2PC Interface A step by step Guide

Connecting igaging DigiMAG Scales to the Caliper2PC Interface A step by step Guide What is an igaging DigiMAG Scale? The igaging DigiMAG are digital linear scales that are easily connectable to the Caliper2PC interface. They consist of two parts, the encoder and the readout unit. The

More information

Arduino Panel Meter Clock. By Russ Hughes

Arduino Panel Meter Clock. By Russ Hughes Arduino Panel Meter Clock By Russ Hughes (russ@owt.com) OVERVIEW My father has been a lifelong Ham Radio Operator with a fondness for almost anything with a panel meter. After seeing the Trinket Powered

More information

Operation Manual SuperDry Data Logger (SDDL)

Operation Manual SuperDry Data Logger (SDDL) Operation Manual SuperDry Data Logger (SDDL) 1. Description This device has been equipped with custom-programmable logic module, mounted in it s own housing. The respective module serves to measure the

More information

Quick Start Guide. GV-Video Server

Quick Start Guide. GV-Video Server Quick Start Guide GV-Video Server Thank you for purchasing GV-Video Server. This guide is designed to assist the new user in getting immediate results from the GV-Video Server. For advanced information

More information

TouchOne Mini Installation Manual

TouchOne Mini Installation Manual TouchOne Mini Installation Manual Contents 1. Overview 4 2. Wiring 5 3. Mounting 6 4. Addressing 7 5. Setup Wizard 8 6. Internet Connectivity 7 7. Troubleshooting 10 8. Specifications 11 1. Overview The

More information

Connecting LEDs to the ADB I/O

Connecting LEDs to the ADB I/O Application Note AN-2 By Magnus Pettersson September 26 1996 Connecting LEDs to the I/O Introduction The following notes are for those of you who are a bit inexperienced with hardware components. This

More information