0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

プランターの土壌温度をAmbient+シェルスクリプトで可視化してみた。

Last updated at Posted at 2020-08-12

概要

データを簡単に可視化できるサービス「Ambient」にシェルスクリプトからデータを送信する方法を示します。(あまり需要はなさそうですが)

背景

ベランダのプランターでオクラとバジルを育て始めたので、自動で水やりをするシステムをRaspberry Pi Zero W(以下RPi)とポンプを使って作りました。
image.png

ところで、「日中に水やりをすると、土の中の温度が上がり植物に良くない」とよく言われますが、「水を撒けば水そのものの温度や気化熱で、かえって温度は下がるのでは?」と疑問を持ったので、実際に測定してみることにしました。

ついでにRPiのCPUコア温度もモニタリングし、RPi自身の状態の参考にします。

使った機材

方法

以下にシェルスクリプトを示します。

# !/bin/bash

# チャネルID
channelId="*****"
# ライトキー
writeKey="*****"

url="http://ambidata.io/api/v2/channels/${channelId}/dataarray"

# 1-Wire温度センサから温度を取得
soil_temp="$(grep -m1 "t=" /sys/bus/w1/devices/28*/w1_slave | sed -r 's/.*t=([0-9]{2})([0-9]+)$/\1\.\2/')"
# CPUコア温度を取得
cpu_temp="$(awk '{print $1 / 1000.0}' /sys/class/thermal/thermal_zone0/temp)"

data_text='[{"d1":"'${soil_temp}'","d2":"'${cpu_temp}'"}]'

curl -H 'Content-Type:application/json' \
-d '{"writeKey":"'${writeKey}'", "data":'${data_text}'}' \
${url}

処理の流れ:

  1. channelId,writeKey,urlを設定します。
  2. 1-Wire接続の温度センサDS18B20から温度を取得してsoil_tempに格納します。1-Wireのデバイスは/sys/bus/w1/devices以下にデバイス毎のディレクトリとして認識されますが、温度センサであればディレクトリ名は28から始まります。grepで28から始まるディレクトリにある、w1_slave中のt=の行を抜き出します。-m1は、結果が複数あっても1行だけ結果を返すオプションです。sedではt=以降の温度部分を抜き出しています。温度は5桁の整数で渡されるので、先頭2桁とそれ以降に分けて、間に.をつけることで擬似的に小数に変換しています。
    3.CPU温度を取得してcpu_tempに格納します。awkコマンドで/sys/class/thermal/thermal_zone0/tempから取得したCPU温度を1000で割って小数にしています。
    4.取得したsoil_tempcpu_tempをjsonフォーマットに整形してdata_textに格納します。
  3. curlコマンドでambient宛にデータをPOSTします。writeKeyでライトキーを渡してやります。

実行した結果

以下で確認出来ます。
https://ambidata.io/bd/board.html?id=15241

上記のスクリプトをcronで定期実行しています。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?