theapi/cctvblindfoldbundle

An over engineered switch for a cctv camera using a Raspberry pi

Installs: 56

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

Language:Python

Type:symfony-bundle

dev-master 2014-09-24 08:50 UTC

This package is not auto-updated.

Last update: 2024-05-20 12:47:05 UTC


README

An over engineered switch for a cctv camera using a Raspberry pi & Symfony.

Requires:

  • nmap
  • Raspberry Pi
  • Stepper motor
  • Cctv camera

Ultimately, the CctvBundle files should be downloaded to the vendor/theapi/cctvblindfoldbundle/Theapi/CctvBlindfoldBundle directory.

Using composer

Simply run assuming you have installed composer.phar or composer binary:

$ composer require ronanguilloux/php-gpio dev-master

$ composer require theapi/cctvblindfoldbundle dev-master

B) Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Theapi\CctvBlindfoldBundle\TheapiCctvBlindfoldBundle(),
    );
}