-
Notifications
You must be signed in to change notification settings - Fork 0
/
MobaBus_Module.h
85 lines (62 loc) · 1.92 KB
/
MobaBus_Module.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
MobaBus Module
© 2021, Markus Mair. All rights reserved.
This file is part of the MobaBus Project
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __MOBA_BUS_MODULE__
#define __MOBA_BUS_MODULE__
#include <Arduino.h>
#include <EEPROM.h>
#include "MobaBus_Protocol.h"
#define MODULE_MAX_CONFIG_SIZE 16
class MobaBus;
class MobaBus_Module{
private:
String _moduleName;
uint8_t _moduleTypeID;
uint8_t _channels;
MobaDevType _type;
uint16_t _address;
bool _intitialized = false;
public:
uint8_t moduleID;
MobaBus *controller;
bool useConfigStorage;
/**
* @return channels used
*/
virtual bool begin()=0;
virtual void loop()=0;
virtual void processPkg(MobaBus_Packet *pkg)=0;
void init(String name, MobaDevType type, uint8_t typeID, uint8_t usedChannels);
/**
* @loadConf/storeConf
*
* @param eepromAddress where to store/load the conf
* @return next EEProm index, -1 on failure;
*/
virtual int loadConf(uint16_t eepromAddress);
virtual int storeConf(uint16_t eepromAddress);
/**
* Addresses the Module
* @param first address of the module
* @return the amount of used addresses
*/
uint8_t programmAddress(uint16_t address);
String moduleName();
uint8_t usedChannels();
MobaDevType getModuleType();
uint16_t address();
bool initialized();
};
#endif