名前が決めれない(RaspberryPi)

ラズベリーパイを使ったプログラムを公開します

起動時スクリプト

起動時のIPを確認するために、画面に表示する。

/etc/rc.local

# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
    #  printf "My IP address is %s\n" "$_IP"
    echo $_IP | sudo /home/pi/display16x32/my-rpi-rgb-led-matrix/led_matrix_16x32_string_screen --input.stdin
fi




地震情報監視スクリプト - 名前が決めれない(RaspberryPi)