Bits and Droids connector
Connect your microcontroller to handle MFS2020 commands.
Loading...
Searching...
No Matches
activeoutputs.h
Go to the documentation of this file.
1#ifndef ACTIVEOUTPUTS_H
2#define ACTIVEOUTPUTS_H
3
4#include <QMap>
5
6
7
9{
10public:
12 void changeOutputState(int index);
13private:
14 QMap<int, bool> activeOutputsMap;
15};
16
17#endif // ACTIVEOUTPUTS_H
Definition: activeoutputs.h:9
QMap< int, bool > activeOutputsMap
Definition: activeoutputs.h:14
void changeOutputState(int index)
Definition: activeoutputs.cpp:14
ActiveOutputs()
Definition: activeoutputs.cpp:11