This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************ | |
// Basic Example: Inorganisms | |
// | |
// Listens to the world and responds after some delay. | |
************************************************************/ | |
#include <FiniteStateMachine.h> | |
#include <Adafruit_NeoPixel.h> // Include to make the lights work | |
// Create the states to use | |
State sensing = State(doSense); |