Nightscout
Gettin Nightscout Data
Node-RED
AWTRIX 3
About this flow
| System | Node-RED |
|---|---|
| AWTRIX version | AWTRIX 3 |
| Topic | Miscellaneous |
| Built by | Daymon |
| File | XBJpoqZkOrzw.json · 0.7 KB |
| Icons | — |
| Published | 18 Jul 2025 |
| Downloads | 16 |
Is this your flow?
If you created this flow, open your saved edit link to add it to your account. You can then manage it whenever you sign in. Adding it to your account replaces the edit link.
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.