2020-07-03 18:35:02 +02:00
|
|
|
/*
|
|
|
|
* © 2020, Chris Harlow. All rights reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Asbelos DCC API
|
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-06-03 15:26:49 +02:00
|
|
|
#ifndef Outputs_h
|
|
|
|
#define Outputs_h
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
2021-08-03 23:12:25 +02:00
|
|
|
#include "IODevice.h"
|
2020-06-03 15:26:49 +02:00
|
|
|
|
|
|
|
struct OutputData {
|
2021-08-03 23:12:25 +02:00
|
|
|
union {
|
|
|
|
uint8_t oStatus; // (Bit 0=Invert, Bit 1=Set state to default, Bit 2=default state, Bit 7=active)
|
|
|
|
struct {
|
|
|
|
unsigned int flags : 7; // Bit 0=Invert, Bit 1=Set state to default, Bit 2=default state
|
|
|
|
unsigned int : 1;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
unsigned int invert : 1;
|
|
|
|
unsigned int setDefault : 1;
|
|
|
|
unsigned int defaultValue : 1;
|
|
|
|
unsigned int: 4;
|
|
|
|
unsigned int active : 1;
|
|
|
|
};
|
|
|
|
};
|
2021-07-24 21:11:18 +02:00
|
|
|
uint16_t id;
|
2021-08-03 23:12:25 +02:00
|
|
|
VPIN pin;
|
2020-06-03 15:26:49 +02:00
|
|
|
};
|
|
|
|
|
2021-07-25 22:53:20 +02:00
|
|
|
|
2020-06-03 15:26:49 +02:00
|
|
|
class Output{
|
2021-07-24 21:11:18 +02:00
|
|
|
public:
|
2021-08-03 23:12:25 +02:00
|
|
|
void activate(uint16_t s);
|
|
|
|
bool isActive();
|
2021-07-24 21:11:18 +02:00
|
|
|
static Output* get(uint16_t);
|
|
|
|
static bool remove(uint16_t);
|
2021-11-08 02:07:21 +01:00
|
|
|
#ifndef DISABLE_EEPROM
|
2020-06-03 15:26:49 +02:00
|
|
|
static void load();
|
|
|
|
static void store();
|
2021-11-08 02:07:21 +01:00
|
|
|
#endif
|
2021-08-03 23:12:25 +02:00
|
|
|
static Output *create(uint16_t, VPIN, int, int=0);
|
2020-06-03 15:26:49 +02:00
|
|
|
static Output *firstOutput;
|
|
|
|
struct OutputData data;
|
|
|
|
Output *nextOutput;
|
2020-12-27 16:20:11 +01:00
|
|
|
static void printAll(Print *);
|
2021-07-24 21:11:18 +02:00
|
|
|
private:
|
2021-08-03 23:12:25 +02:00
|
|
|
uint16_t num; // EEPROM address of oStatus in OutputData struct, or zero if not stored.
|
2020-09-06 13:44:19 +02:00
|
|
|
|
2020-06-03 15:26:49 +02:00
|
|
|
}; // Output
|
|
|
|
|
|
|
|
#endif
|