/* * Author: Noel Eck * Copyright (c) 2015 Intel Corporation. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include "dfrph.h" dfrph_context dfrph_init(int16_t pin) { dfrph_context dev = (dfrph_context) malloc(sizeof(struct _dfrph_context)); if(dev == NULL) return NULL; /* Init aio pin */ dev->aio = mraa_aio_init(pin); /* Set the ref, offset, and scale */ dev->m_aref = 5.0; dev->m_offset = 0.0; dev->m_scale = 1.0; if(dev->aio == NULL) { free(dev); return NULL; } return dev; } void dfrph_close(dfrph_context dev) { mraa_aio_close(dev->aio); free(dev); } upm_result_t dfrph_set_aref(const dfrph_context dev, float aref) { dev->m_aref = aref; return UPM_SUCCESS; } float dfrph_get_aref(const dfrph_context dev) { return dev->m_aref; } upm_result_t dfrph_set_offset(const dfrph_context dev, float offset) { dev->m_offset = offset; return UPM_SUCCESS; } upm_result_t dfrph_set_scale(const dfrph_context dev, float scale) { dev->m_scale = scale; return UPM_SUCCESS; } upm_result_t dfrph_get_raw_volts(const dfrph_context dev, float *volts) { *volts = mraa_aio_read_float(dev->aio); if (*volts == -1.0) return UPM_ERROR_OPERATION_FAILED; /* Scale by aref */ *volts *= dev->m_aref; return UPM_SUCCESS; } upm_result_t dfrph_get_ph(const dfrph_context dev, float *value) { /* Read normalized */ *value = mraa_aio_read_float(dev->aio); if (*value < 0.0) return UPM_ERROR_OPERATION_FAILED; /* Apply scale */ *value *= dev->m_scale; /* Vmax for sensor is 0.8 * Vref, so scale by 1/0.8 = 1.25 */ *value *= 1.25 * 14; /* Convert to pH */ /* Apply offset in pH */ *value += dev->m_offset; return UPM_SUCCESS; }