#include "Global.h"

Potentiometer potentiometer =Potentiometer(POTENTIOMETER_SIGNAL_PIN);
RGBLed led = RGBLed(RGBLED_RED_PIN, RGBLED_GREEN_PIN, RGBLED_BLUE_PIN);

Potentiometer::Potentiometer(byte p, byte c, byte n){
	Potentiometer(p,c,n,false,false);
}
Potentiometer::Potentiometer(byte p, byte c, byte n, bool sec){
	Potentiometer(p,c,n,sec,false);
}
//-----------------------------------------------------------------------------------
// constructor
Potentiometer::Potentiometer(byte p){
	Potentiometer(p,0,0,false,true);
}