*/
public PixelInvadersSerialDevice(ApplicationConfigurationHelper ph, int nrOfScreens) {
super(OutputDeviceEnum.PIXELINVADERS, ph, 5, nrOfScreens);
try {
lpd6803 = new Lpd6803Serial(ph.getPixelInvadersBlacklist(), ph.getPixelInvadersCorrectionMap(), ph.getDeviceXResolution());
this.initialized = lpd6803.isInitialized();
super.setLpd6803(lpd6803);
LOG.log(Level.INFO, "\nPING result: "+ this.initialized+"\n\n");
} catch (NoSerialPortFoundException e) {
LOG.log(Level.WARNING, "failed to initialize serial port!");