This is an alternative way to control which channel is active. is saves only the channels that are active in a vector.

Dependencies:   mbed

Committer:
Jamess
Date:
Sun Feb 28 15:54:13 2016 +0000
Revision:
0:5ab9f1abaf4d
An alternative way to control which channels are active;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jamess 0:5ab9f1abaf4d 1 #ifndef CANAL_H
Jamess 0:5ab9f1abaf4d 2 #define CANAL_H
Jamess 0:5ab9f1abaf4d 3
Jamess 0:5ab9f1abaf4d 4 #include <vector>
Jamess 0:5ab9f1abaf4d 5 #include "mbed.h"
Jamess 0:5ab9f1abaf4d 6
Jamess 0:5ab9f1abaf4d 7
Jamess 0:5ab9f1abaf4d 8 class Canal{
Jamess 0:5ab9f1abaf4d 9 public:
Jamess 0:5ab9f1abaf4d 10
Jamess 0:5ab9f1abaf4d 11 Canal();
Jamess 0:5ab9f1abaf4d 12 bool getState(void);
Jamess 0:5ab9f1abaf4d 13 void setState(bool);
Jamess 0:5ab9f1abaf4d 14 private:
Jamess 0:5ab9f1abaf4d 15 bool state;
Jamess 0:5ab9f1abaf4d 16
Jamess 0:5ab9f1abaf4d 17 };
Jamess 0:5ab9f1abaf4d 18
Jamess 0:5ab9f1abaf4d 19 #endif