/************************************************************************* * * * This file is part of the 20n/act project. * * 20n/act enables DNA prediction for synthetic biology/bioengineering. * * Copyright (C) 2017 20n Labs, Inc. * * * * Please direct all queries to act@20n.com. * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program. If not, see <http://www.gnu.org/licenses/>. * * * *************************************************************************/ package com.twentyn.bioreactor.sensors; import com.fasterxml.jackson.annotation.JsonProperty; import org.joda.time.DateTime; public class PHSensorData extends SensorData { private static final Integer NOMINAL_READ_DELAY = 1000; @JsonProperty("pH") private Double pH; public PHSensorData() { super.deviceType = "PH"; super.readQueryTimeDelay = NOMINAL_READ_DELAY + ADD_READ_DELAY; } public PHSensorData(Double pH, String deviceName, DateTime timeOfReading) { super(deviceName, timeOfReading); super.deviceType = "PH"; super.readQueryTimeDelay = NOMINAL_READ_DELAY + ADD_READ_DELAY; this.pH = pH; } public Double getpH() { return pH; } public void setpH(Double pH) { this.pH = pH; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; if (!super.equals(o)) return false; PHSensorData that = (PHSensorData) o; return pH != null ? pH.equals(that.pH) : that.pH == null; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + (pH != null ? pH.hashCode() : 0); return result; } @Override public void parseSensorDataFromResponse(byte[] deviceResponse) { String response = new String(deviceResponse).trim(); setpH(Double.parseDouble(response)); } }