From d9ff240f1c1723fe9cfb7e347773f6e4aea944c2 Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Tue, 14 Jun 2022 16:59:55 +0200 Subject: [PATCH] configure Testmachine with Hue actor --- examples/bffh.dhall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/bffh.dhall b/examples/bffh.dhall index eb754e5..bb3a018 100644 --- a/examples/bffh.dhall +++ b/examples/bffh.dhall @@ -184,7 +184,7 @@ Hue1 = { module = "Process", params = { cmd = "./examples/hue.py", args = "-vvv" } - } + }, DoorControl1 = { -- This actor calls the actor.py script in examples/ @@ -217,7 +217,7 @@ -- Actors need to be connected to machines to be useful. A machine can be connected to multiple actors, but one -- actor can only be connected to one machine. actor_connections = [ - { machine = "Testmachine", actor = "Shelly1234" }, + { machine = "Testmachine", actor = "Hue1" }, { machine = "Another", actor = "Bash" }, { machine = "Yetmore", actor = "Bash2" }, { machine = "Yetmore", actor = "FailBash"}