From 6dd3b3d7ade42affd26245a2a89c1f6aa813e707 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 2 Apr 2017 13:05:42 +0200 Subject: [PATCH] changed example configuration for websocket node-type to combine `unit` and `series` settings --- etc/websocket.conf | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/etc/websocket.conf b/etc/websocket.conf index e648b18d4..8ea8279ea 100644 --- a/etc/websocket.conf +++ b/etc/websocket.conf @@ -18,8 +18,6 @@ nodes = { ws = { type = "websocket", - unit = "MVa", - units = [ "V", "A", "Var" ], description = "Demo Channel", #vectorize = 10, source = { @@ -27,10 +25,10 @@ nodes = { location = "ACS lab" }, series = ( - { label = "Random walk" }, - { label = "Sine" }, - { label = "Rect" }, - { label = "Ramp" } + { label = "Random walk", unit = "V" }, + { label = "Sine", unit = "A" }, + { label = "Rect", unit = "Var"}, + { label = "Ramp", unit = "°C" } ) } };