// -----------------------------------------------------------------------------
|
|
// Event Counter Sensor
|
|
// Copyright (C) 2017-2019 by Xose Pérez <xose dot perez at gmail dot com>
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#if SENSOR_SUPPORT && EVENTS_SUPPORT
|
|
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "../debug.h"
|
|
#include "BaseSensor.h"
|
|
|
|
// we are bound by usable GPIOs
|
|
#define EVENTS_SENSORS_MAX 10
|
|
|
|
class EventSensor : public BaseSensor {
|
|
|
|
public:
|
|
|
|
// ---------------------------------------------------------------------
|
|
// Public
|
|
// ---------------------------------------------------------------------
|
|
|
|
EventSensor() {
|
|
_count = 2;
|
|
_sensor_id = SENSOR_EVENTS_ID;
|
|
}
|
|
|
|
~EventSensor() {
|
|
_enableInterrupts(false);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
void setGPIO(unsigned char gpio) {
|
|
_gpio = gpio;
|
|
}
|
|
|
|
void setPinMode(unsigned char pin_mode) {
|
|
_pin_mode = pin_mode;
|
|
}
|
|
|
|
void setInterruptMode(unsigned char interrupt_mode) {
|
|
_interrupt_mode = interrupt_mode;
|
|
}
|
|
|
|
void setDebounceTime(unsigned long ms) {
|
|
_isr_debounce = microsecondsToClockCycles(ms * 1000);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
unsigned char getGPIO() {
|
|
return _gpio;
|
|
}
|
|
|
|
unsigned char getPinMode() {
|
|
return _pin_mode;
|
|
}
|
|
|
|
unsigned char getInterruptMode() {
|
|
return _interrupt_mode;
|
|
}
|
|
|
|
unsigned long getDebounceTime() {
|
|
return _isr_debounce;
|
|
}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// Sensors API
|
|
// ---------------------------------------------------------------------
|
|
|
|
// Initialization method, must be idempotent
|
|
// Defined outside the class body
|
|
void begin() {
|
|
pinMode(_gpio, _pin_mode);
|
|
_enableInterrupts(true);
|
|
_ready = true;
|
|
}
|
|
|
|
// Descriptive name of the sensor
|
|
String description() {
|
|
char buffer[20];
|
|
snprintf(buffer, sizeof(buffer), "INTERRUPT @ GPIO%d", _gpio);
|
|
return String(buffer);
|
|
}
|
|
|
|
// Descriptive name of the slot # index
|
|
String description(unsigned char index) {
|
|
return description();
|
|
};
|
|
|
|
// Address of the sensor (it could be the GPIO or I2C address)
|
|
String address(unsigned char index) {
|
|
return String(_gpio);
|
|
}
|
|
|
|
// Type for slot # index
|
|
unsigned char type(unsigned char index) {
|
|
if (index == 0) return MAGNITUDE_COUNT;
|
|
if (index == 1) return MAGNITUDE_EVENT;
|
|
return MAGNITUDE_NONE;
|
|
}
|
|
|
|
void pre() override {
|
|
_last = _current;
|
|
_current = _counter;
|
|
}
|
|
|
|
double value(unsigned char index) override {
|
|
switch (index) {
|
|
case 0:
|
|
return _current - _last;
|
|
case 1:
|
|
return (_current - _last > 0) ? 1.0 : 0.0;
|
|
default:
|
|
return 0.0;
|
|
}
|
|
}
|
|
|
|
// Handle interrupt calls from isr[GPIO] functions
|
|
// Cannot be nested, since the esp8266/Arduino Core already masks all GPIO handlers before calling this function
|
|
|
|
void ICACHE_RAM_ATTR handleDebouncedInterrupt() {
|
|
// Debounce is based around ccount (32bit value), overflowing every:
|
|
// ~53s when F_CPU is 80MHz
|
|
// ~26s when F_CPU is 160MHz
|
|
// see: cores/esp8266/Arduino.h definitions
|
|
//
|
|
// To convert to / from normal time values, use:
|
|
// - microsecondsToClockCycles(microseconds)
|
|
// - clockCyclesToMicroseconds(cycles)
|
|
// Since the division operation on this chip is pretty slow,
|
|
// avoid doing the conversion here and instead do that at initialization
|
|
auto cycles = ESP.getCycleCount();
|
|
if (cycles - _isr_last > _isr_debounce) {
|
|
_isr_last = cycles;
|
|
++_counter;
|
|
}
|
|
}
|
|
|
|
void ICACHE_RAM_ATTR handleInterrupt() {
|
|
++_counter;
|
|
}
|
|
|
|
protected:
|
|
|
|
// ---------------------------------------------------------------------
|
|
// Interrupt management
|
|
// ---------------------------------------------------------------------
|
|
|
|
void _attach(unsigned char gpio, unsigned char mode);
|
|
void _detach(unsigned char gpio);
|
|
|
|
void _enableInterrupts(bool value) {
|
|
if (value) {
|
|
_detach(_gpio);
|
|
_attach(_gpio, _interrupt_mode);
|
|
} else {
|
|
_detach(_gpio);
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// Protected
|
|
// ---------------------------------------------------------------------
|
|
|
|
unsigned long _counter { 0ul };
|
|
|
|
unsigned long _current { 0ul };
|
|
unsigned long _last { 0ul };
|
|
|
|
unsigned long _isr_last { 0ul };
|
|
unsigned long _isr_debounce { microsecondsToClockCycles(EVENTS1_DEBOUNCE * 1000) };
|
|
|
|
int _gpio { GPIO_NONE };
|
|
int _pin_mode { INPUT };
|
|
int _interrupt_mode { RISING };
|
|
|
|
};
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Interrupt helpers
|
|
// -----------------------------------------------------------------------------
|
|
|
|
EventSensor * _event_sensor_instance[EVENTS_SENSORS_MAX] = {nullptr};
|
|
|
|
void ICACHE_RAM_ATTR _event_sensor_isr(EventSensor* instance) {
|
|
if (instance->getDebounceTime()) {
|
|
instance->handleDebouncedInterrupt();
|
|
} else {
|
|
instance->handleInterrupt();
|
|
}
|
|
}
|
|
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_0() { _event_sensor_isr(_event_sensor_instance[0]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_1() { _event_sensor_isr(_event_sensor_instance[1]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_2() { _event_sensor_isr(_event_sensor_instance[2]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_3() { _event_sensor_isr(_event_sensor_instance[3]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_4() { _event_sensor_isr(_event_sensor_instance[4]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_5() { _event_sensor_isr(_event_sensor_instance[5]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_12() { _event_sensor_isr(_event_sensor_instance[6]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_13() { _event_sensor_isr(_event_sensor_instance[7]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_14() { _event_sensor_isr(_event_sensor_instance[8]); }
|
|
void ICACHE_RAM_ATTR _event_sensor_isr_15() { _event_sensor_isr(_event_sensor_instance[9]); }
|
|
|
|
static void (*_event_sensor_isr_list[10])() = {
|
|
_event_sensor_isr_0, _event_sensor_isr_1, _event_sensor_isr_2,
|
|
_event_sensor_isr_3, _event_sensor_isr_4, _event_sensor_isr_5,
|
|
_event_sensor_isr_12, _event_sensor_isr_13, _event_sensor_isr_14,
|
|
_event_sensor_isr_15
|
|
};
|
|
|
|
void EventSensor::_attach(unsigned char gpio, unsigned char mode) {
|
|
if (!gpioValid(gpio)) return;
|
|
unsigned char index = gpio > 5 ? gpio-6 : gpio;
|
|
|
|
if (_event_sensor_instance[index] == this) return;
|
|
if (_event_sensor_instance[index]) detachInterrupt(gpio);
|
|
|
|
_event_sensor_instance[index] = this;
|
|
attachInterrupt(gpio, _event_sensor_isr_list[index], mode);
|
|
|
|
#if SENSOR_DEBUG
|
|
DEBUG_MSG_P(PSTR("[SENSOR] GPIO%d interrupt attached to %s\n"), gpio, this->description().c_str());
|
|
#endif
|
|
}
|
|
|
|
void EventSensor::_detach(unsigned char gpio) {
|
|
if (!gpioValid(gpio)) return;
|
|
unsigned char index = gpio > 5 ? gpio-6 : gpio;
|
|
if (_event_sensor_instance[index]) {
|
|
detachInterrupt(gpio);
|
|
_event_sensor_instance[index] = nullptr;
|
|
|
|
#if SENSOR_DEBUG
|
|
DEBUG_MSG_P(PSTR("[SENSOR] GPIO%d interrupt detached from %s\n"), gpio, _event_sensor_instance[index]->description().c_str());
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#endif // SENSOR_SUPPORT && EVENTS_SUPPORT
|