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

Merge branch 'develop' of git.rwth-aachen.de:acs/public/villas/VILLASnode into develop

This commit is contained in:
Steffen Vogel 2019-01-12 13:51:22 +01:00
commit d066abfc16

40
etc/mqtt.conf Normal file
View file

@ -0,0 +1,40 @@
logging = {
level = "debug"
}
nodes = {
mqtt_node = {
type = "mqtt",
format = "json",
username = "villas",
password = "s3c0sim4!",
host = "137.226.248.91",
in = {
subscribe = "villas-dpsim1"
}
out = {
publish = "dpsim1-villas"
}
},
signal_node = {
type = "signal",
signal = "mixed",
values = 5
}
}
paths = (
{
in = [
"signal_node"
],
out = [
"mqtt_node"
],
reverse = false,
hooks = (
{
type = "print"
}
)
}
)