PCM_Viewer/config.example.json

22 lines
497 B
JSON
Raw Permalink Normal View History

2026-02-06 22:49:52 +08:00
{
"imagePath": "background.png",
"influxdbUrl": "http://localhost:8086",
"influxdbToken": "your-token-here",
"influxdbOrg": "your-org",
"influxdbBucket": "your-bucket",
"query": "from(bucket: \"your-bucket\")\n |> range(start: -1m)\n |> filter(fn: (r) => r[\"_measurement\"] == \"temperature\")\n |> last()",
"showConfig": true,
"textItems": [
{
"fieldName": "temperature",
"x": 100,
"y": 100,
"fontSize": 24,
"color": "#FFFFFF"
}
]
}