//-*-c++-*-
#ifndef INCLUDED_TestBehavior_h_
#define INCLUDED_TestBehavior_h_

#include "Behaviors/Leapers.h"

//! just a quick little demo behavior which lights up the LED with the same index number as the button which is pushed

#nodeclass TestBehavior : StateNode : setup
#statemachine
	startnode: RedLEDOn =T(1000)=> RedLEDOff =T(1000)=> NodYes =T(1000)=> Speak($, "done")
#endstatemachine
#endnodeclass

#endif
