unicode ftw!
This commit is contained in:
parent
5b71859821
commit
c9c8ee5e39
1 changed files with 7 additions and 6 deletions
|
@ -8,17 +8,18 @@ boxMeta=`curl "${API}/boxes/${BOX}"`
|
||||||
sensors=`curl "${API}/boxes/${BOX}/sensors"`
|
sensors=`curl "${API}/boxes/${BOX}/sensors"`
|
||||||
updated=`echo $boxMeta | jq -r '.lastMeasurementAt'`
|
updated=`echo $boxMeta | jq -r '.lastMeasurementAt'`
|
||||||
weblink=`echo $boxMeta | jq -r '.weblink'`
|
weblink=`echo $boxMeta | jq -r '.weblink'`
|
||||||
|
name=`echo $boxMeta | jq -r '.name'`
|
||||||
echo $boxMeta | jq -r '.name'
|
temp=`echo $sensors | jq -r '.sensors[0] | .lastMeasurement.value + .unit'`
|
||||||
|
echo "$name 🌡 $temp"
|
||||||
|
|
||||||
echo "---"
|
echo "---"
|
||||||
echo $sensors | jq -r '.sensors[] | .title + ":\t\t" + .lastMeasurement.value + " " + .unit'
|
echo $sensors | jq -r '.sensors[] | .title + ":\t\t" + .lastMeasurement.value + " " + .unit'
|
||||||
|
|
||||||
echo "---"
|
echo "---"
|
||||||
echo "last measurement from `date -d $updated +'%d.%m. %H:%M'`"
|
echo "🕗\tdata from `date -d $updated +'%d.%m. %H:%M'`"
|
||||||
echo "refresh | refresh=true"
|
echo "⭮\trefresh | refresh=true"
|
||||||
|
|
||||||
echo "---"
|
echo "---"
|
||||||
echo "view on openSenseMap.org | href='https://opensensemap.org/explore/$BOX'"
|
echo "🗺view on openSenseMap.org | href='https://opensensemap.org/explore/$BOX'"
|
||||||
[ ! $weblink == "null" ] && echo "open weblink | href='$weblink'"
|
[ ! $weblink == "null" ] && echo "🔗\topen weblink | href='$weblink'"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue