aboutsummaryrefslogtreecommitdiffstats
path: root/test
blob: 3549fc545b00e567b6f0d3b70960d619e70063a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
machine temp_switch
[ 
	state above_treshold;
	starting state below_treshold;
	
	from below_treshold to above_treshold
		on event above_temperature "10";
	from above_treshold to below_treshold
		on event below_temperature "9";
	on state above_treshold
		on event get_temp | html_encase | http_out ;
];