1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

changed example configuration for websocket node-type to combine unit and series settings

This commit is contained in:
Steffen Vogel 2017-04-02 13:05:42 +02:00
parent 7c73251c60
commit 6dd3b3d7ad

View file

@ -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" }
)
}
};