Sensor Communication Library  0.2.0
SensorCommunicationLib.h
Go to the documentation of this file.
1 
10 #include <Smoothed.h> // Include the library
11 
12 
13 #define MAXNUMOFSENSORS 30
14 
16 {
17  public:
18  SensorCommunicationLib(int NumberOfSensors=10);
19  void processSensors(void (*getSensorData)()); //call in loop()
20  float Sensors[MAXNUMOFSENSORS];
21  private:
22  int kNumberOfSensors;
23  void Tentative();
24  void Send();
25 };
SensorCommunicationLib(int NumberOfSensors=10)
void processSensors(void(*getSensorData)())