42 lines
783 B
C
42 lines
783 B
C
/**********************************************************************
|
|
|
|
Sensor.h
|
|
COPYRIGHT (c) 2013-2016 Gregg E. Berman
|
|
|
|
Part of DCC++ BASE STATION for the Arduino
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef Sensor_h
|
|
#define Sensor_h
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define SENSOR_DECAY 0.03
|
|
|
|
struct SensorData {
|
|
int snum;
|
|
byte pin;
|
|
byte pullUp;
|
|
};
|
|
|
|
struct Sensor{
|
|
static Sensor *firstSensor;
|
|
SensorData data;
|
|
boolean active;
|
|
float signal;
|
|
Sensor *nextSensor;
|
|
static void load();
|
|
static void store();
|
|
static Sensor *create(int, int, int, int=0);
|
|
static Sensor* get(int);
|
|
static void remove(int);
|
|
static void show();
|
|
static void status();
|
|
static void parse(char *c);
|
|
static void check();
|
|
}; // Sensor
|
|
|
|
#endif
|
|
|