2016-01-17 00:04:32 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016, Zolertia <http://www.zolertia.com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* \addtogroup zoul-sensors
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* \defgroup zoul-weather-meter-sensor Sparkfun's weather meter
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* \file
|
|
|
|
* Weather meter header file
|
|
|
|
* \author
|
|
|
|
* Antonio Lignan <alinan@zolertia.com>
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#include "lib/sensors.h"
|
2016-01-17 02:22:19 +01:00
|
|
|
#include "dev/zoul-sensors.h"
|
2016-01-17 00:04:32 +01:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#ifndef WEATHER_METER_H_
|
|
|
|
#define WEATHER_METER_H_
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* \name Weather meter sensor return and operation values
|
|
|
|
* @{
|
|
|
|
*/
|
2016-01-17 02:22:19 +01:00
|
|
|
#define WEATHER_METER_RAIN_GAUGE 0x01
|
|
|
|
#define WEATHER_METER_WIND_VANE 0x02
|
2016-01-19 18:00:18 +01:00
|
|
|
#define WEATHER_METER_WIND_VANE_AVG_X 0x03
|
2016-01-17 21:34:52 +01:00
|
|
|
#define WEATHER_METER_ANEMOMETER 0x04
|
|
|
|
#define WEATHER_METER_ANEMOMETER_AVG 0x05
|
2016-01-19 18:00:18 +01:00
|
|
|
#define WEATHER_METER_ANEMOMETER_AVG_X 0x06
|
2016-01-17 21:34:52 +01:00
|
|
|
#define WEATHER_METER_ANEMOMETER_MAX 0x07
|
2016-01-17 00:04:32 +01:00
|
|
|
|
2016-01-19 18:00:18 +01:00
|
|
|
/* Period (seconds) to calculate an average */
|
|
|
|
#ifdef WEATHER_METER_CONF_AVG_PERIOD
|
|
|
|
#define WEATHER_METER_AVG_PERIOD WEATHER_METER_CONF_AVG_PERIOD
|
|
|
|
#else
|
|
|
|
#define WEATHER_METER_AVG_PERIOD 120
|
|
|
|
#endif
|
|
|
|
|
2016-01-17 02:22:19 +01:00
|
|
|
#define WEATHER_METER_ACTIVE SENSORS_ACTIVE
|
|
|
|
#define WEATHER_METER_ANEMOMETER_INT_OVER HW_INT_OVER_THRS
|
|
|
|
#define WEATHER_METER_ANEMOMETER_INT_DIS HW_INT_DISABLE
|
|
|
|
#define WEATHER_METER_RAIN_GAUGE_INT_OVER (HW_INT_OVER_THRS << 1)
|
|
|
|
#define WEATHER_METER_RAIN_GAUGE_INT_DIS (HW_INT_DISABLE << 1)
|
2016-01-17 00:04:32 +01:00
|
|
|
|
2016-01-17 02:22:19 +01:00
|
|
|
#define WEATHER_METER_SUCCESS 0
|
|
|
|
#define WEATHER_METER_ERROR (-1)
|
|
|
|
|
2016-01-17 14:56:12 +01:00
|
|
|
/* 2.4Km/h per tick, 2 per rotation */
|
|
|
|
#define WEATHER_METER_ANEMOMETER_SPEED_1S (1200)
|
|
|
|
|
|
|
|
/* 0.2794mm per tick */
|
|
|
|
#define WEATHER_METER_AUX_RAIN_MM 2794
|
2016-01-17 00:04:32 +01:00
|
|
|
|
2016-01-17 21:34:52 +01:00
|
|
|
/* Allows to select the return type: ticks or converted value (truncated) */
|
2016-01-17 00:04:32 +01:00
|
|
|
#ifdef WEATHER_METER_RAIN_CONF_RETURN
|
2016-01-17 02:22:19 +01:00
|
|
|
#define WEATHER_METER_RAIN_RETURN_TICKS WEATHER_METER_RAIN_CONF_RETURN
|
2016-01-17 00:04:32 +01:00
|
|
|
#else
|
2016-01-17 02:22:19 +01:00
|
|
|
#define WEATHER_METER_RAIN_RETURN_TICKS 1
|
2016-01-17 00:04:32 +01:00
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* \name Anemometer and rain gauge sensor interrupt callback macro
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define WEATHER_METER_REGISTER_ANEMOMETER_INT(ptr) anemometer_int_callback = ptr;
|
|
|
|
#define WEATHER_METER_REGISTER_RAIN_GAUGE_INT(ptr) rain_gauge_int_callback = ptr;
|
2016-01-17 02:22:19 +01:00
|
|
|
extern void (*anemometer_int_callback)(uint16_t value);
|
|
|
|
extern void (*rain_gauge_int_callback)(uint16_t value);
|
2016-01-17 00:04:32 +01:00
|
|
|
/** @} */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* \name Weather meter's anemometer default pin, port and interrupt vector
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifdef WEATHER_METER_CONF_ANEMOMETER_PIN
|
|
|
|
#define ANEMOMETER_SENSOR_PIN WEATHER_METER_CONF_ANEMOMETER_PIN
|
|
|
|
#else
|
|
|
|
#define ANEMOMETER_SENSOR_PIN 1
|
|
|
|
#endif
|
|
|
|
#ifdef WEATHER_METER_CONF_ANEMOMETER_PORT
|
|
|
|
#define ANEMOMETER_SENSOR_PORT WEATHER_METER_CONF_ANEMOMETER_PORT
|
|
|
|
#else
|
|
|
|
#define ANEMOMETER_SENSOR_PORT GPIO_D_NUM
|
|
|
|
#endif
|
|
|
|
#ifdef WEATHER_METER_CONF_ANEMOMETER_VECTOR
|
|
|
|
#define ANEMOMETER_SENSOR_VECTOR WEATHER_METER_CONF_ANEMOMETER_VECTOR
|
|
|
|
#else
|
|
|
|
#define ANEMOMETER_SENSOR_VECTOR NVIC_INT_GPIO_PORT_D
|
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* \name Weather meter's rain gauge default pin, port and interrupt vector
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifdef WEATHER_METER_CONF_RAIN_GAUGE_PIN
|
|
|
|
#define RAIN_GAUGE_SENSOR_PIN WEATHER_METER_CONF_RAIN_GAUGE_PIN
|
|
|
|
#else
|
|
|
|
#define RAIN_GAUGE_SENSOR_PIN 2
|
|
|
|
#endif
|
|
|
|
#ifdef WEATHER_METER_CONF_RAIN_GAUGE_PORT
|
|
|
|
#define RAIN_GAUGE_SENSOR_PORT WEATHER_METER_CONF_RAIN_GAUGE_PORT
|
|
|
|
#else
|
|
|
|
#define RAIN_GAUGE_SENSOR_PORT GPIO_D_NUM
|
|
|
|
#endif
|
|
|
|
#ifdef WEATHER_METER_CONF_RAIN_GAUGE_VECTOR
|
|
|
|
#define RAIN_GAUGE_SENSOR_VECTOR WEATHER_METER_CONF_RAIN_GAUGE_VECTOR
|
|
|
|
#else
|
|
|
|
#define RAIN_GAUGE_SENSOR_VECTOR NVIC_INT_GPIO_PORT_D
|
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* \name Weather meter's wind vane default ADCx pin (see board.h)
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifdef WEATHER_METER_CONF_RAIN_WIND_VANE_ADC
|
|
|
|
#define WIND_VANE_ADC WEATHER_METER_CONF_RAIN_WIND_VANE_ADC
|
|
|
|
#else
|
|
|
|
#define WIND_VANE_ADC ZOUL_SENSORS_ADC3
|
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#define WEATHER_METER_SENSOR "Sparkfun weather meter"
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
extern const struct sensors_sensor weather_meter;
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#endif /* ifndef WEATHER_METER_H_ */
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
* @}
|
|
|
|
*/
|