theapi / cctvblindfoldbundle
使用Raspberry pi实现的针对cctv摄像头的过度设计的开关
dev-master
2014-09-24 08:50 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-09-23 14:33:53 UTC
README
使用Raspberry pi和Symfony实现的针对cctv摄像头的过度设计的开关。
需求
- nmap
- Raspberry Pi
- 步进电机
- Cctv摄像头
最终,CctvBundle文件应该下载到vendor/theapi/cctvblindfoldbundle/Theapi/CctvBlindfoldBundle
目录。
使用composer
假设您已安装composer.phar或composer二进制文件,只需运行以下命令
$ composer require ronanguilloux/php-gpio dev-master $ composer require theapi/cctvblindfoldbundle dev-master
B) 启用组件
在内核中启用组件
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Theapi\CctvBlindfoldBundle\TheapiCctvBlindfoldBundle(), ); }