Studica - C++ Documentation
Cobra.h
1 #pragma once
2 
3 #include <iostream>
4 #include <cstdint>
5 
6 namespace studica {
7  class Cobra;
8 }
9 
11  private:
12 
13  float vRef;
14 
15  public:
16 
17  Cobra();
18  Cobra(float _vRef);
19  ~Cobra();
20  int GetRawValue(int channel);
21  float GetVoltage(int channel);
22 };
studica::Cobra
Definition: Cobra.h:10