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

Remove accidentially committed example configs

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-09-05 12:52:01 +02:00 committed by Steffen Vogel
parent e2ae1089d9
commit de3f95c8e4
2 changed files with 0 additions and 70 deletions

View file

@ -1,35 +0,0 @@
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
nodes = {
webrtc = {
type = "webrtc",
# A unique session identifier which must be shared between two nodes
session = "KUCHEN"
peer = "a"
# Address to the websocket signaling server
server = "http://172.23.157.207:8080"
# wait_seconds = 5
}
signal = {
type = "signal"
signal = "sine"
values = 1
rate = 0.2
}
}
paths = (
{
in = "signal"
out = "webrtc"
},
{
in = "webrtc"
hooks = ("print")
}
)

View file

@ -1,35 +0,0 @@
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
nodes = {
webrtc = {
type = "webrtc",
# A unique session identifier which must be shared between two nodes
session = "KUCHEN"
peer = "b"
# Address to the websocket signaling server
server = "http://172.23.157.207:8080"
# wait_seconds = 5
}
signal = {
type = "signal"
signal = "sine"
values = 1
rate = 0.2
}
}
paths = (
{
in = "signal"
out = "webrtc"
},
{
in = "webrtc"
hooks = ("print")
}
)