theapi/cctvblindfoldbundle

使用Raspberry pi实现的针对cctv摄像头的过度设计的开关

安装: 56

依赖项: 0

建议者: 0

安全: 0

星标: 2

关注者: 1

分支: 0

开放问题: 0

语言:Python

类型:symfony-bundle

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

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(),
    );
}