//Freedomotic.logger.severe("Sending Arduino WeatherShield protocol read event for board '" + address + "'");
String values[] = parametersValue.split(board.getDelimiter());
//building the event
ProtocolRead event = new ProtocolRead(this, "ArduinoWeatherShield", address); //IP:PORT
//adding some optional information to the event
event.addProperty("boardIP", board.getIpAddress());
event.addProperty("boardPort", new Integer(board.getPort()).toString());
event.addProperty("sensor.temperature", values[0]);
event.addProperty("sensor.pressure", values[1]);
event.addProperty("sensor.humidity", values[2]);
//publish the event on the messaging bus