v2.7.0
- Add an option for a custom datasource!
- If you want to use this script to distribute readings that you get via your own custom software, now you can! Simply publish the whole Apps Script project as a web app as described in the Readme and you can send custom JSON data to this script. For example, you could use
RTL_433
to send JSON payloads to Apps Script with a command such as:
sudo rtl_433 -F json | while read -r line; do echo "$line" | curl -sS -X POST -H "Content-Type: application/json" -d @- "https://script.google.com/macros/..."; done
- If you want to use this script to distribute readings that you get via your own custom software, now you can! Simply publish the whole Apps Script project as a web app as described in the Readme and you can send custom JSON data to this script. For example, you could use
To update:
- Copy the code from
code.gs
in this release over yourCode.gs
file. - Make sure your API Keys and settings at the top of the file are correct and
💾 Save
. - Run the
Schedule
function again with the▷ Run
button in the toolbar.