aboutsummaryrefslogtreecommitdiffstats
path: root/test3
diff options
context:
space:
mode:
authorGalin Simeonov <gts@volconst.com>2021-05-31 22:02:10 +0300
committerGalin Simeonov <gts@volconst.com>2021-07-15 18:00:15 +0300
commit255a49ba5a41b3854dbdfebdec75fb6229450507 (patch)
tree616ea5786cb91d03ef609d32b402941dc30e926b /test3
parentf768d9bdb84e846d89aac66a4f3433a44241c298 (diff)
downloadMEGATRON-255a49ba5a41b3854dbdfebdec75fb6229450507.tar.gz
added cmake file
Diffstat (limited to 'test3')
-rw-r--r--test321
1 files changed, 0 insertions, 21 deletions
diff --git a/test3 b/test3
deleted file mode 100644
index 43e47d1..0000000
--- a/test3
+++ /dev/null
@@ -1,21 +0,0 @@
-machine light_bulb
-[
- states [ light_on , light_off ];
- events [ switch_state , turn_on , turn_off ];
-
- starting on light_off;
-
- transitions
- [
- from light_on to light_off on event switch_state execute light_switch();
- from light_off to light_on on event switch_state execute light_switch();
-
- from light_on to light_off on event turn_on execute light_switch();
- from light_off to light_on on event turn_off execute light_switch();
- ];
-];
-
-transition light_switch()
-{
-
-}