//-*-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 : LeapMachine : setup
#statemachine
   startnode: StateNode =T(5000)=> Play($, "fart.wav") =T(100)=> Sway($, 30) =T(3000)=> Sway($, -30) =T(3000)=> Sway($, 0) =T(2000)=> startnode
#endstatemachine
#endnodeclass

#endif
