Pi를 다시 시작하기 위해 전원을 제거 할 필요는 없습니다. SD 카드 근처에 한 쌍의 패드가 있습니다 (재설정 된 라벨이 재설정되었을 가능성이 있습니다. 모두 Pi가 보드에 납땜되어 있기 때문에 Pi에서 볼 수 없습니다.) 잠시 후에 다시 시작하십시오.
최근 Rasbpian에는 종료 프로세스가 내장되어 있습니다 (에서 처리 systemd-logind
).
에 다음을 추가하십시오 /boot/config.txt
dtoverlay=gpio-shutdown,gpio_pin=5
이를 통해 핀 29 (GPIO 5)와 핀 30 (Gnd) 사이에 연결된 스위치를 통해 Pi의 순차적 종료를 시작할 수 있습니다.
거의 모든 핀을 사용할 수 있습니다. 기본값은 핀 5 (GPIO 3)이지만 I²C에 자주 사용되지만
,gpio_pin=21
스크립트 핀 40 (GPIO 21) 및 핀 39 (Gnd)에 사용 된 것과 동일한 핀을 사용합니다.
sudo poweroff
Pi를 종료하는 것이 좋습니다 . 당신이하고있는 일에는 아무런 문제가 없지만 poweroff
전원을 끄는 것이 안전 할 때 녹색 LED가 1 초 간격으로 10 번 깜박입니다.
푸시 버튼으로 Pi를 종료하는 Python 스크립트가 있습니다.
#!/usr/bin/env python2.7
#-------------------------------------------------------------------------------
# Name: Shutdown Daemon
#
# Purpose: This program gets activated at the end of the boot process by
# cron. (@ reboot sudo python /home/pi/shutdown_daemon.py)
# It monitors a button press. If the user presses the button, we
# Halt the Pi, by executing the poweroff command.
#
# The power to the Pi will then be cut when the Pi has reached the
# poweroff state (Halt).
# To activate a gpio pin with the poweroff state, the
# /boot/config.txt file needs to have :
# dtoverlay=gpio-poweroff,gpiopin=27
#
# Author: Paul Versteeg
#
# Created: 15-06-2015, revised on 18-12-2015
# Copyright: (c) Paul 2015
# https://www.raspberrypi.org/forums/viewtopic.php?p=864409#p864409
#-------------------------------------------------------------------------------
import RPi.GPIO as GPIO
import subprocess
import time
GPIO.setmode(GPIO.BCM) # use GPIO numbering
GPIO.setwarnings(False)
# I use the following two GPIO pins because they are next to each other,
# and I can use a two pin header to connect the switch logic to the Pi.
# INT = 17 # GPIO-17 button interrupt to shutdown procedure
# KILL = 27 # GPIO-27 /KILL : this pin is programmed in /boot/config.txt and cannot be used by any other program
INT = 21 # GPIO button interrupt to shutdown procedure
# use a weak pull_up to create a high
GPIO.setup(INT, GPIO.IN, pull_up_down=GPIO.PUD_UP)
def main():
while True:
# set an interrupt on a falling edge and wait for it to happen
GPIO.wait_for_edge(INT, GPIO.FALLING)
# print "button pressed"
time.sleep(1) # Wait 1 second to check for spurious input
if( GPIO.input(INT) == 0 ) :
subprocess.call(['poweroff'], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if __name__ == '__main__':
main()