throws BindingConfigParseException {
super.processBindingConfiguration(context, item, bindingConfig);
String[] parts = bindingConfig.split(";");
String address = null;
EMType type = null;
Datapoint datapoint = null;
double correctionFactor = 0;
for (String part : parts) {
String[] keyValue = part.split("=");
if ("type".equals(keyValue[0])) {
type = EMType.getFromTypeValue(keyValue[1]);