aboutsummaryrefslogtreecommitdiffstats
path: root/test
blob: c976a6d892122be0b56676cb1524bda238a07f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
machine flicker
[
	states [ light_off , light_on ];

	starting on light_on;

	events [ one_second ];
	transitions
	[
		from light_on to light_off on event one_second
			execute turn_off_light;
		from light_off to light_on on event one_second
			execute turn_on_light;
	];
];