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
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-01-27 16:16:00 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(), ); }