From 1e4d9af446ffbce152b2014052351519c94acbf5 Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Fri, 29 Jun 2018 14:05:04 +0200 Subject: [PATCH] Deleted shutdownbutton --- shutdownbutton.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 shutdownbutton.py diff --git a/shutdownbutton.py b/shutdownbutton.py deleted file mode 100644 index cbcdd7d..0000000 --- a/shutdownbutton.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/python -# Simple script for shutting down the raspberry Pi at the press of a button. -# by Inderpreet Singh - -import RPi.GPIO as GPIO -import time -import os - -# Use the Broadcom SOC Pin numbers -# Setup the Pin with Internal pullups enabled and PIN in reading mode. -GPIO.setmode(GPIO.BCM) -GPIO.setup(18, GPIO.IN, pull_up_down = GPIO.PUD_UP) - -# Our function on what to do when the button is pressed -def Shutdown(channel): - os.system("sudo shutdown -h now") - -# Add our function to execute when the button pressed event happens -GPIO.add_event_detect(18, GPIO.FALLING, callback = Shutdown, bouncetime = 2000) - -# Now wait! -while 1: - time.sleep(1) - - -#Borougth by https://www.element14.com/community/docs/DOC-78055/l/adding-a-shutdown-button-to-the-raspberry-pi-b - - - - - - - - - - - -