mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
7a20896c8c
Comments have a horrible habit of getting out of date.
30 lines
573 B
C
30 lines
573 B
C
#ifndef Turnouts_h
|
|
#define Turnouts_h
|
|
|
|
#include <Arduino.h>
|
|
#include "DCC.h"
|
|
|
|
struct TurnoutData {
|
|
uint8_t tStatus;
|
|
uint8_t subAddress;
|
|
int id;
|
|
int address;
|
|
};
|
|
|
|
struct Turnout{
|
|
static Turnout *firstTurnout;
|
|
int num;
|
|
struct TurnoutData data;
|
|
Turnout *nextTurnout;
|
|
static bool activate(int n, bool state);
|
|
static Turnout* get(int);
|
|
static bool remove(int);
|
|
static void load();
|
|
static void store();
|
|
static Turnout *create(int, int, int);
|
|
static void show(Stream & stream, int n);
|
|
static bool showAll(Stream & stream);
|
|
}; // Turnout
|
|
|
|
#endif
|