String HOST = args[0];
int PORT = Integer.parseInt(args[1]);
int CHANNELS = Integer.parseInt(args[2]);
EpocClient client = new EpocClient(HOST, PORT, CHANNELS);
client.addListener(new EpocListener() {
double prevNumber = 0;
@Override
public void receivedSample(EpocSample sample) {