This flow was submitted before accounts existed, so nobody owns it yet. If you submitted it, open the edit link you were given — it still works — and you can attach the flow to an account from there. There is no deadline, and attaching it retires the link for good.
Nightscout
Gettin Nightscout Data
| System | Node-RED |
|---|---|
| Firmware | AWTRIX 3 |
| Topic | Miscellaneous |
| Built by | Daymon |
| File | XBJpoqZkOrzw.json · 0.7 KB |
| Icons | — |
| Published | 18 Jul 2025 |
| Downloads | 13 |
Getting Nightscout Data from URL
XBJpoqZkOrzw.json
{
"name": "Nightscout Glukose Flow",
"enabled": true,
"triggers": [
{
"type": "Timer",
"interval": 300
}
],
"actions": [
{
"type": "HTTP",
"method": "GET",
"url": "https://DEINENIGHTSCOUT/api/v1/entries.json?count=2",
"response": {
"parse": true,
"actions": [
{
"type": "CustomApp",
"name": "BLOODGLUCOSE",
"payload": {
"icon": 65219,
"text": "${response[0].sgv} mg/dl | Δ ${delta}",
"duration": 10
},
"variables": {
"delta": "${response[0].sgv - response[1].sgv}"
}
}
]
}
}
]
}
More flows for Node-RED or Miscellaneous
Something wrong with this flow? Report it.