https://lab.seeed.co.jp/entry/2021/10/19/183618
重要なのは「OS Updateを行わない(Skipする)」事。
※実は標準でPython3が入っているが、pythonにリンクが張られていない。
Python2を動かしたければ追加でインストールする。
$ sudo apt install python $ sudo apt install RPi.GPIO
https://qiita.com/clses/items/e701c1cb6490751a6040
/home/pi/shutdownd.py
#!/usr/bin/python # coding:utf-8 import time import RPi.GPIO as GPIO import os pinnumber=23 GPIO.setmode(GPIO.BCM) GPIO.setup(pinnumber,GPIO.IN,pull_up_down=GPIO.PUD_UP) while True: GPIO.wait_for_edge(pinnumber, GPIO.FALLING) sw_counter = 0 while True: sw_status = GPIO.input(pinnumber) if sw_status == 0: sw_counter = sw_counter + 1 if sw_counter >= 300: print("Long push!") os.system("sudo shutdown -h now") break else: print("short push!") break time.sleep(0.01) print(sw_counter)
/usr/lib/systemd/system/shutdownbuttond.service
[Unit] Description=Shutdown Daemon [Service] ExecStart =/home/pi/shutdownd.py Restart=always Type=simple [Install] WantedBy=multi-user.target
自動起動に設定
$ sudo systemctl enable shutdownbuttond.service
デーモン再起動
$ sudo systemctl daemon-reload
サービス開始
$ sudo systemctl start shutdownbuttond.service
開始したか確認
$ sudo systemctl status shutdownbuttond.service
sudo apt-get install xscreensaver
デフォルトではキーボードのASDFにアサインされているが、これが結構邪魔くさい。
自由にアサインしてPythonとかから扱えるようになるまでは無効にしておいた方が無難。
/boot/config.txt に記述する
dtoverlay=reTerminal,key0=0x0,key1=0x0,key2=0x0,key3=0x0
dtoverlay=reTerminalという記述が既にあるが、それに続いて,key0=を追記する
$ sudo systemctl stop dphys-swapfile.service $ sudo systemctl disable dphys-swapfile.service $ sudo rm /var/swap
https://qiita.com/takashi53/items/f6a866f0081609dbb8d6
$ bluetoothctl
scan on でペアリングしたデバイスを探す
ターゲットがみつかったらscan offしてスキャンを止める
pair MAC_ADDRESS でペアリングを実行
console=serial0,115200 console=tty1 root=PARTUUID=5371387f-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet fbcon=map:10 splash plymouth.ignore-serial-consoles logo.nologo vt.global_cursor_default=0 console=tty3 loglevel=0
標準のテーマは「seeed」になってる。
テーマは次のディレクトに入っている
/usr/share/plymouth/theme
テーマの切り替えは次のコマンドで行う
sudo plymouth-set-default-theme [THEME名] sudo update-initramfs -u sudo reboot
一番単純なテーマは「pix」で、splash.pngを表示するだけのもの。
初期状態に戻したければ、
sudo plymouth-set-default-theme seeed sudo update-initramfs -u sudo reboot
ここに沢山のテーマが公開されている
https://www.gnome-look.org/browse?cat=108&ord=latest