2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RaspberryPi でNode-REDを起動してみた

Last updated at Posted at 2024-11-09

やること

RaspberryPi でNodeREDを起動する

バージョン

RaspberryPi 3

OSインストール

Raspberry Pi Imagerのダウンロードとインストールする。
https://www.raspberrypi.com/software/

パソコンにマイクロSDカードをセット
(容量=32GB もしくは 64GB、速度=U1推奨)

Raspberry Pi Imager を開き、
デバイス、OS、ストレージ(SDカード)を選択

Image from Gyazo

イメージをSDカードに書き出したら、
RaspberryPiにSDカードを差し込む。
モニター、キーボード、マウスをセットし、
RaspberryPiを起動する。

IMG_5809.jpg

言語、Wi-Fiなど設定。

Node-RED

ここを参考にした。
https://nodered.jp/docs/getting-started/raspberrypi

RaspberryPiのターミナルで
以下のコマンドを実行
bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)

インストールできたら、
以下のコマンドでNodeREDが実行できる。

node-red-pi --max-old-space-size=256

または、
Menu -> Programming -> Node-RED 
でも実行できる。

「フローを開始しました」とメッセージがでればOK
Image from Gyazo



Raspberry Piデスクトップのブラウザの場合、
以下のアドレスでエディタを開くことができる。
http://localhost:1880

ここはRaspberry PiのUsername , Password を入力する。

Image from Gyazo

Node-RED が立ち上がった!

Image from Gyazo



とはいえ、
Raspberry Piのブラウザよりも
他のPCのブラウザで見る方がいい。

PCのブラウザで以下にアクセスすれば、
Raspberry Pi のNode-RED にアクセスできる。

http:// Raspberry Pi のIPアドレス :1880
(例)http://123.456.78:1880

なお、Raspberry Piの IPアドレスは
Raspberry Piのターミナルで以下のコマンドで確認できる。

hostname -I

PCのブラウザでRaspberry PiのNode-REDにアクセスできた。

Gb543yda4AANPCq.jpeg

Raspberry Piの電源がついたときにNode-REDを自動起動させるには、以下のコマンドを実行する。

sudo systemctl enable nodered.service

なお、Node-REDの自動起動を無効にするには、以下のコマンドを実行。

sudo systemctl disable nodered.service



以上です。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?