Writing Machine Directory/statemachines: Difference between revisions
| Line 13: | Line 13: | ||
==Nod-Blink-Yawn State Machine== | ==Nod-Blink-Yawn State Machine== | ||
<div style="display: flex; justify-content: left;"> | <div style="display: flex; justify-content: left;"> | ||
> in | > in | ||
to give a touch of human warmth to our schematic demonstration | to give a touch of human warmth to our schematic demonstration | ||
| Line 37: | Line 36: | ||
> out | > out | ||
</div> | </div> | ||
<div style="display: flex; justify-content: left;"> | <div style="display: flex; justify-content: left;"> | ||
[[File:LeaLuca-statemachine.svg|thumb]] | [[File:LeaLuca-statemachine.svg|thumb]] | ||
</div> | </div> | ||
Revision as of 22:21, 6 December 2025
Writing-Machines/State-Machines
State Writing Machines made during prototyping on 23 September
using File:Prototyping_20250923_state_machines.pdf and Graphviz
Aquarium Conversation Simulator
Nod-Blink-Yawn State Machine
> in to give a touch of human warmth to our schematic demonstration Clara van Bloemendaal is the dragon of Arnhem > touch > NOD > TURN OPPOSITE x4 > touch Clara > touch Clara has > touch Clara has to do with > touch Clara has to do with straightforward > touch Clara has to do with straightforward dragon > touch Clara has to do with straightforward dragon > out
Barbara and Youjung's Writing Machine
igraph {
label="Youjung and Barbara's writing machine ( ^a ) ^a "
labelloc="t"
speaker [shape=doublecircle];
listener [shape=doublecircle label="listener\n ^v ( ^` ^m ^` ) ^v "];
input [shape=plaintext]
output [shape=plaintext]
rankdir=LR;
input -> speaker
speaker -> listener [label="quietly say the sentence"]
speaker -> speaker [label="I said..."]
listener -> output
listener -> speaker [label="Pardon?"]
}