baud = 115200;
}
this.supportConnectionState = true;
this.initialized = false;
try {
miniDmx = new MiniDmxSerial(this.xResolution*this.yResolution*3, baud);
this.initialized = miniDmx.ping();
LOG.log(Level.INFO, "ping result: "+ this.initialized);
} catch (NoSerialPortFoundException e) {
LOG.log(Level.WARNING, "failed to initialize serial port!");
}