#ifndef POTENTIOMETER_BEHAVIOUR_h
#define POTENTIOMETER_BEHAVIOUR_h
#include "Arduino.h"
#include "Behaviours.h"
#include <VizBlocks.h>

/**
 * [PotentiometerUpdated description]
 * @param node [description]
 * @param name [description]
 */
class PotentiometerUpdated : public Behaviour
{
	/**
	 * Class that defines a behaviour that publishes a
	 * ButtonPressed message to the input topic of the
	 * MQQT broker
	 */
	VizBlocks* _node;

public:
	PotentiometerUpdated(VizBlocks* node, String name = "PotentiometerUpdated") :
		Behaviour(name), _node(node)
	{ }
	/**
	   @brief What does this do?
	 */
	char* args();
	/**
	   @brief What does this do?
	 */
	String start(String args);
};

#endif