|
|
- // -----------------------------------------------------------------------------
- // Event Counter Sensor
- // Copyright (C) 2017 by Xose Pérez <xose dot perez at gmail dot com>
- // -----------------------------------------------------------------------------
-
- #pragma once
-
- #include "Arduino.h"
- #include "BaseSensor.h"
-
- class EventSensor : public BaseSensor {
-
- public:
-
- // ---------------------------------------------------------------------
- // Public
- // ---------------------------------------------------------------------
-
- EventSensor(): BaseSensor() {
- _count = 1;
- }
-
- ~EventSensor() {
- detachInterrupt(_gpio);
- }
-
- void setGPIO(unsigned char gpio, int mode = INPUT) {
- _gpio = gpio;
- pinMode(_gpio, mode);
- }
-
- void setinterruptMode(unsigned long mode) {
- _mode = mode;
- }
-
- void setDebounceTime(unsigned long debounce) {
- _debounce = debounce;
- }
-
- // ---------------------------------------------------------------------
- // Sensors API
- // ---------------------------------------------------------------------
-
- // Initialization method, must be idempotent
- // Defined outside the class body
- void begin() {
- if (_interrupt_gpio != GPIO_NONE) detach(_interrupt_gpio);
- attach(this, _gpio, _mode);
- }
-
- // Descriptive name of the sensor
- String name() {
- char buffer[20];
- snprintf(buffer, sizeof(buffer), "EVENT @ GPIO%d", _gpio);
- return String(buffer);
- }
-
- // Descriptive name of the slot # index
- String slot(unsigned char index) {
- (void) index;
- return name();
- }
-
- // Type for slot # index
- magnitude_t type(unsigned char index) {
- _error = SENSOR_ERROR_OK;
- if (index == 0) return MAGNITUDE_EVENTS;
- _error = SENSOR_ERROR_OUT_OF_RANGE;
- return MAGNITUDE_NONE;
- }
-
- // Current value for slot # index
- double value(unsigned char index) {
- _error = SENSOR_ERROR_OK;
- if (index == 0) {
- double value = _events;
- _events = 0;
- return value;
- };
- _error = SENSOR_ERROR_OUT_OF_RANGE;
- return 0;
- }
-
- // Handle interrupt calls
- void handleInterrupt(unsigned char gpio) {
- (void) gpio;
- static unsigned long last = 0;
- if (millis() - last > _debounce) {
- _events = _events + 1;
- last = millis();
- }
- }
-
- // Interrupt attach callback
- void attached(unsigned char gpio) {
- BaseSensor::attached(gpio);
- _interrupt_gpio = gpio;
- }
-
- // Interrupt detach callback
- void detached(unsigned char gpio) {
- BaseSensor::detached(gpio);
- if (_interrupt_gpio == gpio) _interrupt_gpio = GPIO_NONE;
- }
-
- protected:
-
- // ---------------------------------------------------------------------
- // Protected
- // ---------------------------------------------------------------------
-
- volatile unsigned long _events = 0;
- unsigned long _debounce = EVENTS_DEBOUNCE;
- unsigned char _gpio;
- unsigned char _interrupt_gpio = GPIO_NONE;
- unsigned char _mode;
-
- };
|