5 lines
320 B
Bash
Executable File
5 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -s https://api.syngeos.pl/api/public/data/device/1554 |jq -r '.sensors |.[] | { (.name): ((.data[0].value|tostring) + .unit ) }' > /tmp/czujnik
|
|
curl -s https://api.syngeos.pl/api/public/data/device/1554 |jq -r '.sensors |.[] | { (.name): ((.data[0].threshold_level|tostring) ) }' > /tmp/czujnik-levels
|