This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Rename this distribution example file to motion.conf | |
| # | |
| # This config file was generated by motion 4.0 | |
| ############################################################ | |
| # Daemon | |
| ############################################################ | |
| # Start in daemon (background) mode and release terminal (default: off) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DriverFlighting\Partner] | |
| "TargetRing"="Drivers" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Jay Janarthanan 2015 - motion.py | |
| #Insert PIR Motion Sensor Data into GPIO Port 14 (Pin 8) on RPi 1 Model B Rev 2 | |
| import time | |
| import RPi.GPIO as io | |
| io.setmode(io.BCM) | |
| motion_pin = 14 #GPIO Pin of Data insert | |
| io.setup(motion_pin, io.IN) #Activate the Pin, and set IO to be in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # (c) Jay Janarthanan 2015. | |
| # http://jay.appavate.com | |
| # You can use the code below freely under a GNU license. | |
| import os, glob, time, sys, datetime | |
| #initiate the temperature sensor in Parasitic mode | |
| os.system('sudo modprobe w1-gpio pullup=1') | |
| os.system('sudo modprobe w1-therm strong_pullup=1') |