theapi / cctvblindfoldbundle
An over engineered switch for a cctv camera using a Raspberry pi
Package info
github.com/theapi/CctvBlindfoldBundle
Language:Python
Type:symfony-bundle
pkg:composer/theapi/cctvblindfoldbundle
dev-master
2014-09-24 08:50 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-03-09 21:49:34 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(), ); }