super(OutputDeviceEnum.RAINBOWDUINO_V2, ph, 4);
this.allI2cAddress = ph.getI2cAddr();
this.initialized = false;
try {
rainbowduino = new Rainbowduino(allI2cAddress);
this.initialized = rainbowduino.ping();
LOG.log(Level.INFO, "ping result: "+ this.initialized);
} catch (NoSerialPortFoundException e) {
LOG.log(Level.WARNING, "failed to initialize serial port!", e);
}