diff --git a/arduino/motor_shield_two/makefile b/arduino/motor_shield_two/makefile
deleted file mode 100644
index e69de29..0000000
diff --git a/arduino/motor_shield_two/motor_shield_two.ino b/arduino/motor_shield_two/motor_shield_two.ino
deleted file mode 100644
index e69de29..0000000
diff --git a/arduino/relay_shield/makefile b/arduino/relay_shield/makefile
deleted file mode 100644
index e69de29..0000000
diff --git a/arduino/relay_shield/relay_shield.ino b/arduino/relay_shield/relay_shield.ino
deleted file mode 100644
index e69de29..0000000
diff --git a/arduino/sensors/makefile b/arduino/sensors/makefile
deleted file mode 100644
index e69de29..0000000
diff --git a/arduino/sensors/sensors.ino b/arduino/sensors/sensors.ino
deleted file mode 100644
index e69de29..0000000
diff --git a/graphviz/map_1.dot b/graphviz/map_1.dot
deleted file mode 100644
index 57df8ec..0000000
--- a/graphviz/map_1.dot
+++ /dev/null
@@ -1,121 +0,0 @@
-digraph map {
- graph [fontname = "Cantarell-VF"];
- node [fontname = "Cantarell-VF", fontsize="18"];
- edge [fontname = "Cantarell"]
-
- "door two" [style=filled, fillcolor=brown]
- "door one" [style=filled, fillcolor=brown]
-
- "magnet one" [style=filled, fillcolor=yellow]
- "magnet two" [style=filled, fillcolor=yellow]
- "ldr one" [style=filled, fillcolor=yellow]
- "ldr two" [style=filled, fillcolor=yellow]
- "ldr three" [style=filled, fillcolor=yellow]
-
- "piezo one" [style=filled, fillcolor=yellow]
- "piezo two" [style=filled, fillcolor=yellow]
- "piezo three" [style=filled, fillcolor=yellow]
-
- "printer one" [style=filled, fillcolor=magenta]
- "printer two" [style=filled, fillcolor=magenta]
- "printer three" [style=filled, fillcolor=magenta]
-
- "lamp one" [style=filled, fillcolor=tomato]
- "lamp two" [style=filled, fillcolor=tomato]
- "lamp three" [style=filled, fillcolor=tomato]
-
- "ventilator one" [style=filled, fillcolor=tomato]
- "ventilator two" [style=filled, fillcolor=tomato]
- "ventilator three" [style=filled, fillcolor=tomato]
-
- "motor shield one" [style=filled, fillcolor=gray]
- "motor shield two" [style=filled, fillcolor=gray]
- "relay shield" [style=filled,fillcolor=gray]
-
- subgraph tidal_ports {
- 8001 [style=filled, fillcolor=cyan]
- 8002 [style=filled, fillcolor=cyan]
- 8003 [style=filled, fillcolor=cyan]
- 8004 [style=filled, fillcolor=cyan]
- 8005 [style=filled, fillcolor=cyan]
- 8006 [style=filled, fillcolor=cyan]
- 8007 [style=filled, fillcolor=cyan]
- 8008 [style=filled, fillcolor=cyan]
- 8009 [style=filled, fillcolor=cyan]
- 8010 [style=filled, fillcolor=cyan]
- 8011 [style=filled, fillcolor=cyan]
- 8012 [style=filled, fillcolor=cyan]
- 8013 [style=filled, fillcolor=cyan]
- 8014 [style=filled, fillcolor=cyan]
- 8015 [style=filled, fillcolor=cyan]
- 8016 [style=filled, fillcolor=cyan]
- }
-
- subgraph relay {
- "relay shield" -> {"lamp one" "lamp two" "lamp three" "ventilator one" "ventilator two" "ventilator three" }
- }
-
- subgraph ports {
- 8005 -> "printer one" [label="slow(er)",color=orange]
- 8006 -> "printer one" [label="fast(er)",color=orange]
- 8007 -> "printer two" [label="slow(er)",color=orange]
- 8008 -> "printer two" [label="fast(er)",color=orange]
- 8009 -> "printer three" [label="slow(er)",color=orange]
- 8010 -> "printer three" [label="fast(er)",color=orange]
- 8011 -> "printer one" [label="go", color=orange]
- 8012 -> "printer one" [label="stop",color=orange]
- 8013 -> "printer two" [label="go", color=orange]
- 8014 -> "printer two" [label="stop",color=orange]
- 8015 -> "printer three"[label="go", color=orange]
- 8016 -> "printer three" [label="stop",color=orange]
-
- }
-
- subgraph fans {
- "ventilator one" -> "piezo one"
- "ventilator two" -> "piezo two"
- "ventilator three" -> "piezo three"
-
- }
-
- subgraph motor_shields {
- "motor shield one" -> "printer one"
- "motor shield two" -> {"printer two" "printer three"}
- }
-
- subgraph sensors {
- //"esp32 one" -> {"magnet one" "magnet two" "ldr one" "ldr two"}
- "magnet one" -> 8001 [color=red,label="off"]
- "magnet one" -> 8002 [color=green,label="on"]
- "magnet two" -> 8003 [color=red,label="off"]
- "magnet two" -> 8004 [color=green,label="on"]
- "ldr one" -> 8005 [color=red,label="off"]
- "ldr one" -> 8006 [color=green,label="on"]
- "ldr two" -> 8007 [color=red,label="off"]
- "ldr two" -> 8008 [color=green,label="on"]
- "ldr three" -> 8015 [color=red,label="off"]
- "ldr three" -> 8016 [color=green,label="on"]
- "piezo one" -> 8009 [label="low",color="green"]
- "piezo one" -> 8010 [label="high",color="red"]
- "piezo two" -> 8011 [label="low",color="green"]
- "piezo two" -> 8012 [label="high",color="red"]
- "piezo three" -> 8013 [label="high",color="red"]
- "piezo three" -> 8014 [label="low",color="green"]
- }
-
- subgraph lamps {
- "lamp one" -> "ldr one"
- "lamp two" -> "ldr two"
- "lamp three" -> "ldr three"
- 8001 -> "lamp one" [color=red,label="off"]
- 8002 -> "lamp one" [color=green,label="on"]
- 8003 -> "lamp two" [color=red,label="off"]
- 8004 -> "lamp two" [color=green,label="on"]
-
- }
- subgraph doors {
- "door one" -> "magnet one"
- "door two" -> "magnet two"
- }
-
-}
diff --git a/graphviz/map_1.png b/graphviz/map_1.png
deleted file mode 100644
index 589dc64..0000000
Binary files a/graphviz/map_1.png and /dev/null differ
diff --git a/tidal/boot/2024-10-22.hs b/tidal/boot/2024-10-22.hs
deleted file mode 100644
index 62d23a5..0000000
--- a/tidal/boot/2024-10-22.hs
+++ /dev/null
@@ -1,173 +0,0 @@
-:set -XOverloadedStrings
-:set prompt ""
-
-import Sound.Tidal.Context
-
-import System.IO (hSetEncoding, stdout, utf8)
-
-hSetEncoding stdout utf8
-
-listenPortOne = 8001
-listenPortTwo = 8002
-listenPortThree = 8003
-listenPortFour = 8004
-listenPortFive = 8005
-listenPortSix = 8006
-listenPortSeven = 8007
-listenPortEight = 8008
-listenPortNine = 8009
-listenPortTen = 8010
-listenPortEleven = 8011
-listenPortTwelve = 8012
-listenPortThriteen = 8013
-listenPortFourteen = 8014
-listenPortFifteen = 8015
-listenPortSixteen = 8016
-listenPortSeventeen = 8017
-listenPortEighteen = 8018
-listenPortNineteen = 8019
-listenPortTwenty = 8020
-listenPortTwentyOne = 8021
-listenPortTwentyTwo = 8022
-listenPortTwentyThree = 8023
-listenPortTwentyFour = 8024
-listenPortTwentyFive = 8025
-listenPortTwentySix = 8026
-listenPortTwentySeven = 8027
-listenPortTwentyEight = 8028
-listenPortTwentyNine = 8029
-listenPortThirty = 8030
-listenPortThirtyOne = 8031
-listenPortThirtyTwo = 8032
-
-:{
- let lolinTarget =
- Target {oName = "lolin",
- oAddress = "192.168.1.110",
- oPort = 7000,
- oLatency = 0.15,
- oSchedule = Live,
- oWindow = Nothing,
- oHandshake = False,
- oBusPort = Nothing
- }
-
- lolinLedAnalog = [("intensity", Just $ VF 0)]
- lolinLedDigital = [("blink", Just $ VS "off")]
-
- lolinFormats = [(OSC "/led/analog" $ ArgList lolinLedAnalog),
- (OSC "/led/digital" $ ArgList lolinLedDigital)
- ]
- lolinMap = [(lolinTarget, lolinFormats)]
-:}
-
-lolinStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6010}) lolinMap
-
-h1 = streamReplace lolinStream 1
-
-:{
- let devkitTarget =
- Target {oName = "devkit",
- oAddress = "192.168.1.111",
- oPort = 7000,
- oLatency = 0.15,
- oSchedule = Live,
- oWindow = Nothing,
- oHandshake = False,
- oBusPort = Nothing
- }
-
- devkitLedAnalog = [("intensity", Just $ VF 0)]
- devkitLedDigital = [("blink", Just $ VS "off")]
-
- devkitFormats = [(OSC "/led/analog" $ ArgList devkitLedAnalog),
- (OSC "/led/digital" $ ArgList devkitLedDigital)
- ]
- devkitMap = [(devkitTarget, devkitFormats)]
-:}
-
-devkitStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6020}) devkitMap
-
-h2 = streamReplace devkitStream 1
-
-
-:{
- let intensity = pF "intensity"
- blink = pS "blink"
-:}
-
-
-tidal <- startTidal (superdirtTarget {oLatency = 0.05, oAddress = "127.0.0.1", oPort = 57120}) (defaultConfig {cVerbose = True, cFrameTimespan = 1/20, cCtrlAddr = "0.0.0.0", cCtrlPort = 6030})
-
-:{
-let only = (hush >>)
- p = streamReplace tidal
- hush = streamHush tidal
- panic = do hush
- once $ sound "superpanic"
- list = streamList tidal
- mute = streamMute tidal
- unmute = streamUnmute tidal
- unmuteAll = streamUnmuteAll tidal
- unsoloAll = streamUnsoloAll tidal
- solo = streamSolo tidal
- unsolo = streamUnsolo tidal
- once = streamOnce tidal
- first = streamFirst tidal
- asap = once
- nudgeAll = streamNudgeAll tidal
- all = streamAll tidal
- resetCycles = streamResetCycles tidal
- setCycle = streamSetCycle tidal
- setcps = asap . cps
- getcps = streamGetcps tidal
- getnow = streamGetnow tidal
- xfade i = transition tidal True (Sound.Tidal.Transition.xfadeIn 4) i
- xfadeIn i t = transition tidal True (Sound.Tidal.Transition.xfadeIn t) i
- histpan i t = transition tidal True (Sound.Tidal.Transition.histpan t) i
- wait i t = transition tidal True (Sound.Tidal.Transition.wait t) i
- waitT i f t = transition tidal True (Sound.Tidal.Transition.waitT f t) i
- jump i = transition tidal True (Sound.Tidal.Transition.jump) i
- jumpIn i t = transition tidal True (Sound.Tidal.Transition.jumpIn t) i
- jumpIn' i t = transition tidal True (Sound.Tidal.Transition.jumpIn' t) i
- jumpMod i t = transition tidal True (Sound.Tidal.Transition.jumpMod t) i
- jumpMod' i t p = transition tidal True (Sound.Tidal.Transition.jumpMod' t p) i
- mortal i lifespan release = transition tidal True (Sound.Tidal.Transition.mortal lifespan release) i
- interpolate i = transition tidal True (Sound.Tidal.Transition.interpolate) i
- interpolateIn i t = transition tidal True (Sound.Tidal.Transition.interpolateIn t) i
- clutch i = transition tidal True (Sound.Tidal.Transition.clutch) i
- clutchIn i t = transition tidal True (Sound.Tidal.Transition.clutchIn t) i
- anticipate i = transition tidal True (Sound.Tidal.Transition.anticipate) i
- anticipateIn i t = transition tidal True (Sound.Tidal.Transition.anticipateIn t) i
- forId i t = transition tidal False (Sound.Tidal.Transition.mortalOverlay t) i
- d1 = p 1 . (|< orbit 0)
- d2 = p 2 . (|< orbit 1)
- d3 = p 3 . (|< orbit 2)
- d4 = p 4 . (|< orbit 3)
- d5 = p 5 . (|< orbit 4)
- d6 = p 6 . (|< orbit 5)
- d7 = p 7 . (|< orbit 6)
- d8 = p 8 . (|< orbit 7)
- d9 = p 9 . (|< orbit 8)
- d10 = p 10 . (|< orbit 9)
- d11 = p 11 . (|< orbit 10)
- d12 = p 12 . (|< orbit 11)
- d13 = p 13
- d14 = p 14
- d15 = p 15
- d16 = p 16
-:}
-
-:{
-let getState = streamGet tidal
- setI = streamSetI tidal
- setF = streamSetF tidal
- setS = streamSetS tidal
- setR = streamSetR tidal
- setB = streamSetB tidal
-:}
-
-:set prompt "> "
-:set prompt-cont ""
-
-default (Pattern String, Integer, Double)
diff --git a/tidal/boot/MotorShieldOne.hs b/tidal/boot/MotorShieldOne.hs
deleted file mode 100644
index 03ca8f6..0000000
--- a/tidal/boot/MotorShieldOne.hs
+++ /dev/null
@@ -1,217 +0,0 @@
-:set -XOverloadedStrings
-:set prompt ""
-
-import Sound.Tidal.Context
-
-import System.IO (hSetEncoding, stdout, utf8)
-
-hSetEncoding stdout utf8
-
-listenPortOne = 8001
-listenPortTwo = 8002
-listenPortThree = 8003
-listenPortFour = 8004
-listenPortFive = 8005
-listenPortSix = 8006
-listenPortSeven = 8007
-listenPortEight = 8008
-listenPortNine = 8009
-listenPortTen = 8010
-listenPortEleven = 8011
-listenPortTwelve = 8012
-listenPortThriteen = 8013
-listenPortFourteen = 8014
-listenPortFifteen = 8015
-listenPortSixteen = 8016
-listenPortSeventeen = 8017
-listenPortEighteen = 8018
-listenPortNineteen = 8019
-listenPortTwenty = 8020
-listenPortTwentyOne = 8021
-listenPortTwentyTwo = 8022
-listenPortTwentyThree = 8023
-listenPortTwentyFour = 8024
-listenPortTwentyFive = 8025
-listenPortTwentySix = 8026
-listenPortTwentySeven = 8027
-listenPortTwentyEight = 8028
-listenPortTwentyNine = 8029
-listenPortThirty = 8030
-listenPortThirtyOne = 8031
-listenPortThirtyTwo = 8032
-
-:{
- let lolinTarget =
- Target {oName = "lolin",
- oAddress = "192.168.1.110",
- oPort = 7000,
- oLatency = 0.15,
- oSchedule = Live,
- oWindow = Nothing,
- oHandshake = False,
- oBusPort = Nothing
- }
-
- lolinLedAnalog = [("intensity", Just $ VF 0)]
- lolinLedDigital = [("blink", Just $ VS "off")]
-
- lolinFormats = [(OSC "/led/analog" $ ArgList lolinLedAnalog),
- (OSC "/led/digital" $ ArgList lolinLedDigital)
- ]
- lolinMap = [(lolinTarget, lolinFormats)]
-:}
-
-lolinStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6010}) lolinMap
-
-h1 = streamReplace lolinStream 1
-
-:{
- let devkitTarget =
- Target {oName = "devkit",
- oAddress = "192.168.1.111",
- oPort = 7000,
- oLatency = 0.15,
- oSchedule = Live,
- oWindow = Nothing,
- oHandshake = False,
- oBusPort = Nothing
- }
-
- devkitLedAnalog = [("intensity", Just $ VF 0)]
- devkitLedDigital = [("blink", Just $ VS "off")]
-
- devkitFormats = [(OSC "/led/analog" $ ArgList devkitLedAnalog),
- (OSC "/led/digital" $ ArgList devkitLedDigital)
- ]
- devkitMap = [(devkitTarget, devkitFormats)]
-:}
-
-devkitStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6020}) devkitMap
-
-h2 = streamReplace devkitStream 1
-
-
-:{
- let intensity = pF "intensity"
- blink = pS "blink"
-:}
-
-
-:{
- let motorShieldOneTarget =
- Target {oName = "motorShieldOne",
- oAddress = "192.168.1.100",
- oPort = 7000,
- oLatency = 0.15,
- oSchedule = Live,
- oWindow = Nothing,
- oHandshake = False,
- oBusPort = Nothing
- }
-
- motorShieldOneSpeed = [("speed", Just $ VI 150)]
- motorShieldOneDirection = [("direction", Just $ VS "r")]
-
- motorShieldOneFeedFormats = [(OSC "/feed/direction" $ ArgList motorShieldOneDirection),
- (OSC "/feed/speed" $ ArgList motorShieldOneSpeed)
- ]
-
- motorShieldOneHeadFormats = [(OSC "/head/speed" $ ArgList motorShieldOneSpeed),
- (OSC "/head/direction" $ ArgList motorShieldOneDirection)
- ]
-
- motorShieldOneFeedMap = [(motorShieldOneTarget, motorShieldOneFeedFormats)]
- motorShieldOneHeadMap = [(motorShieldOneTarget, motorShieldOneHeadFormats)]
-:}
-
-motorShieldOneFeedStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6040}) motorShieldOneFeedMap
-
-m1f = streamReplace motorShieldOneFeedStream
-
-motorShieldOneHeadStream <- startStream (defaultConfig {cCtrlAddr = "0.0.0.0", cCtrlPort = 6040}) motorShieldOneHeadMap
-
-m1h = streamReplace motorShieldOneHeadStream
-
-m1 = m1f 1
-m2 = m1h 1
-
-:{
- let speed = pI "speed"
- direction = pS "direction"
-:}
-
-
-tidal <- startTidal (superdirtTarget {oLatency = 0.05, oAddress = "127.0.0.1", oPort = 57120}) (defaultConfig {cVerbose = True, cFrameTimespan = 1/20, cCtrlAddr = "0.0.0.0", cCtrlPort = 6030})
-
-:{
-let only = (hush >>)
- p = streamReplace tidal
- hush = streamHush tidal
- panic = do hush
- once $ sound "superpanic"
- list = streamList tidal
- mute = streamMute tidal
- unmute = streamUnmute tidal
- unmuteAll = streamUnmuteAll tidal
- unsoloAll = streamUnsoloAll tidal
- solo = streamSolo tidal
- unsolo = streamUnsolo tidal
- once = streamOnce tidal
- first = streamFirst tidal
- asap = once
- nudgeAll = streamNudgeAll tidal
- all = streamAll tidal
- resetCycles = streamResetCycles tidal
- setCycle = streamSetCycle tidal
- setcps = asap . cps
- getcps = streamGetcps tidal
- getnow = streamGetnow tidal
- xfade i = transition tidal True (Sound.Tidal.Transition.xfadeIn 4) i
- xfadeIn i t = transition tidal True (Sound.Tidal.Transition.xfadeIn t) i
- histpan i t = transition tidal True (Sound.Tidal.Transition.histpan t) i
- wait i t = transition tidal True (Sound.Tidal.Transition.wait t) i
- waitT i f t = transition tidal True (Sound.Tidal.Transition.waitT f t) i
- jump i = transition tidal True (Sound.Tidal.Transition.jump) i
- jumpIn i t = transition tidal True (Sound.Tidal.Transition.jumpIn t) i
- jumpIn' i t = transition tidal True (Sound.Tidal.Transition.jumpIn' t) i
- jumpMod i t = transition tidal True (Sound.Tidal.Transition.jumpMod t) i
- jumpMod' i t p = transition tidal True (Sound.Tidal.Transition.jumpMod' t p) i
- mortal i lifespan release = transition tidal True (Sound.Tidal.Transition.mortal lifespan release) i
- interpolate i = transition tidal True (Sound.Tidal.Transition.interpolate) i
- interpolateIn i t = transition tidal True (Sound.Tidal.Transition.interpolateIn t) i
- clutch i = transition tidal True (Sound.Tidal.Transition.clutch) i
- clutchIn i t = transition tidal True (Sound.Tidal.Transition.clutchIn t) i
- anticipate i = transition tidal True (Sound.Tidal.Transition.anticipate) i
- anticipateIn i t = transition tidal True (Sound.Tidal.Transition.anticipateIn t) i
- forId i t = transition tidal False (Sound.Tidal.Transition.mortalOverlay t) i
- d1 = p 1 . (|< orbit 0)
- d2 = p 2 . (|< orbit 1)
- d3 = p 3 . (|< orbit 2)
- d4 = p 4 . (|< orbit 3)
- d5 = p 5 . (|< orbit 4)
- d6 = p 6 . (|< orbit 5)
- d7 = p 7 . (|< orbit 6)
- d8 = p 8 . (|< orbit 7)
- d9 = p 9 . (|< orbit 8)
- d10 = p 10 . (|< orbit 9)
- d11 = p 11 . (|< orbit 10)
- d12 = p 12 . (|< orbit 11)
- d13 = p 13
- d14 = p 14
- d15 = p 15
- d16 = p 16
-:}
-
-:{
-let getState = streamGet tidal
- setI = streamSetI tidal
- setF = streamSetF tidal
- setS = streamSetS tidal
- setR = streamSetR tidal
- setB = streamSetB tidal
-:}
-
-:set prompt "> "
-:set prompt-cont ""
-
-default (Pattern String, Integer, Double)
diff --git a/tidal/compositions/2024-10-22.tidal b/tidal/compositions/2024-10-22.tidal
deleted file mode 100644
index b3edb2d..0000000
--- a/tidal/compositions/2024-10-22.tidal
+++ /dev/null
@@ -1,80 +0,0 @@
--- (setq tidal-boot-script-path "~/.config/tidal/LolinAndDevkit.hs")
--- (setq tidal-boot-script-path "~/.config/tidal/example_1.hs")
-
-
-
-p1 $ blink "off"
-
-p2 $ blink "off"
-
-import Data.Maybe
-
-import Sound.Osc.Fd as O
-
-import Control.Concurrent
-
-actOne :: Udp -> Maybe O.Message -> IO ()
-actOne _ _ = do
- h1 $ slow 8 $ blink "on"
- -- d1 $ fast 4 $ sound "sn" # pan (range 0 1 square)
-
-actTwo :: Udp -> Maybe O.Message -> IO ()
-actTwo _ _ = do
- h1 $ slow 4 $ blink "off"
-
-listenOne :: IO ()
-listenOne = do udp <- udpServer "0.0.0.0" listenPortOne
- loop udp
- where
- loop udp =
- do m <- recvMessage udp
- actOne udp m
- loop udp
-
-listenTwo :: IO ()
-listenTwo = do udp <- udpServer "0.0.0.0" listenPortTwo
- loop udp
- where
- loop udp =
- do m <- recvMessage udp
- actTwo udp m
- loop udp
-
-
-actThree :: Udp -> Maybe O.Message -> IO ()
-actThree _ _ = do
- h2 $ slow 8 $ blink "off"
- -- d1 $ fast 4 $ sound "sn" # pan (range 0 1 square)
-
-actFour :: Udp -> Maybe O.Message -> IO ()
-actFour _ _ = do
- h2 $ slow 4 $ blink "on"
-
-listenThree :: IO ()
-listenThree = do udp <- udpServer "0.0.0.0" listenPortThree
- loop udp
- where
- loop udp =
- do m <- recvMessage udp
- actOne udp m
- loop udp
-
-listenFour :: IO ()
-listenFour = do udp <- udpServer "0.0.0.0" listenPortFour
- loop udp
- where
- loop udp =
- do m <- recvMessage udp
- actTwo udp m
- loop udp
-
-
-office = do
- forkIO listenOne
- forkIO listenTwo
- forkIO listenThree
- forkIO listenFour
-
-office
-
-
diff --git a/tidal/compositions/motor-shield-one.tidal b/tidal/compositions/motor-shield-one.tidal
deleted file mode 100644
index 6400267..0000000
--- a/tidal/compositions/motor-shield-one.tidal
+++ /dev/null
@@ -1,7 +0,0 @@
-(setq tidal-boot-script-path "~/.config/tidal/MotorShieldOne.hs")
-
-m1 $ slow 6 $ speed 125 # direction "f b f b"
-
-m2 $ slow 4 $ speed 150 # direction "f b r f b r"
-
- hush
diff --git a/visualiser/graphs/graph10000.dot b/visualiser/graphs/graph10000.dot
new file mode 100644
index 0000000..4601a71
--- /dev/null
+++ b/visualiser/graphs/graph10000.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=invis,label="",color=invis]
+ fan_two [shape=circle, style=filled, fillcolor=invis,label="",color=invis]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=invis]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10001.dot b/visualiser/graphs/graph10001.dot
new file mode 100644
index 0000000..1f87e09
--- /dev/null
+++ b/visualiser/graphs/graph10001.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=invis,label="",color=invis]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=invis]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10002.dot b/visualiser/graphs/graph10002.dot
new file mode 100644
index 0000000..410f6f3
--- /dev/null
+++ b/visualiser/graphs/graph10002.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=blue,label="",color=blue]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=invis]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10003.dot b/visualiser/graphs/graph10003.dot
new file mode 100644
index 0000000..10f0864
--- /dev/null
+++ b/visualiser/graphs/graph10003.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=blue,label="",color=blue]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=yellow,label="",color=yellow]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=invis]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10004.dot b/visualiser/graphs/graph10004.dot
new file mode 100644
index 0000000..5c8d303
--- /dev/null
+++ b/visualiser/graphs/graph10004.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=blue,label="",color=blue]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=yellow,label="",color=yellow]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=green]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10005.dot b/visualiser/graphs/graph10005.dot
new file mode 100644
index 0000000..10f0864
--- /dev/null
+++ b/visualiser/graphs/graph10005.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=blue,label="",color=blue]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=yellow,label="",color=yellow]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=invis]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/graphs/graph10006.dot b/visualiser/graphs/graph10006.dot
new file mode 100644
index 0000000..48637e3
--- /dev/null
+++ b/visualiser/graphs/graph10006.dot
@@ -0,0 +1,37 @@
+graph {
+ fan_one [shape=circle, style=filled, fillcolor=green,label="",color=green]
+ fan_two [shape=circle, style=filled, fillcolor=blue,label="",color=blue]
+ radio_one [shape=invtrapezium,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_one [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ lamp_two [shape=cylinder,style=filled,fillcolor=invis,label="",color=invis]
+ printer_one [shape=box,style=filled,fillcolor=yellow,label="",color=yellow]
+ printer_two [shape=box,style=filled,fillcolor=invis,label="",color=invis]
+
+ fan_one -- fan_two [color=magenta]
+ fan_one -- radio_one [color=invis]
+ fan_one -- lamp_one [color=invis]
+ fan_one -- lamp_two [color=invis]
+ fan_one -- printer_one [color=invis]
+ fan_one -- printer_two [color=invis]
+
+ fan_two -- radio_one [color=invis]
+ fan_two -- lamp_one [color=invis]
+ fan_two -- lamp_two [color=invis]
+ fan_two -- printer_one [color=invis]
+ fan_two -- printer_two [color=invis]
+
+ radio_one -- lamp_one [color=invis]
+ radio_one -- lamp_two [color=invis]
+ radio_one -- printer_one [color=invis]
+ radio_one -- printer_two [color=invis]
+
+ lamp_one -- lamp_two [color=invis]
+ lamp_one -- printer_one [color=invis]
+ lamp_one -- printer_two [color=invis]
+
+ lamp_two -- printer_one [color=invis]
+ lamp_two -- printer_two [color=invis]
+
+ printer_one -- printer_two [color=invis]
+# 63 "/root/Applications/listeningdaemon/visualiser/main.dot"
+}
diff --git a/visualiser/svgs/graph10000.svg b/visualiser/svgs/graph10000.svg
new file mode 100644
index 0000000..c71ec02
--- /dev/null
+++ b/visualiser/svgs/graph10000.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10001.svg b/visualiser/svgs/graph10001.svg
new file mode 100644
index 0000000..2296d0c
--- /dev/null
+++ b/visualiser/svgs/graph10001.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10002.svg b/visualiser/svgs/graph10002.svg
new file mode 100644
index 0000000..4399575
--- /dev/null
+++ b/visualiser/svgs/graph10002.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10003.svg b/visualiser/svgs/graph10003.svg
new file mode 100644
index 0000000..edbf59c
--- /dev/null
+++ b/visualiser/svgs/graph10003.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10004.svg b/visualiser/svgs/graph10004.svg
new file mode 100644
index 0000000..e922a2b
--- /dev/null
+++ b/visualiser/svgs/graph10004.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10005.svg b/visualiser/svgs/graph10005.svg
new file mode 100644
index 0000000..edbf59c
--- /dev/null
+++ b/visualiser/svgs/graph10005.svg
@@ -0,0 +1,154 @@
+
+
+
+
+
diff --git a/visualiser/svgs/graph10006.svg b/visualiser/svgs/graph10006.svg
new file mode 100644
index 0000000..6eb50db
--- /dev/null
+++ b/visualiser/svgs/graph10006.svg
@@ -0,0 +1,154 @@
+
+
+
+
+