Files

copied
Last update 2 years 9 months by eddyluursema
FilesDCCplusplusDCCpp_Uno
..
Accessories.cpp
Accessories.h
Comm.h
Config.h
CurrentMonitor.cpp
CurrentMonitor.h
DCCpp_Uno.h
DCCpp_Uno.ino
EEStore.cpp
EEStore.h
Outputs.cpp
Outputs.h
PacketRegister.cpp
PacketRegister.h
Sensor.cpp
Sensor.h
SerialCommand.cpp
SerialCommand.h
Sensor.h
/********************************************************************** 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
Report a bug