You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
222 B

2 years ago
2 years ago
  1. #pragma once
  2. #include <stdint.h>
  3. namespace iflytop {
  4. using namespace std;
  5. class ZITemperature {
  6. public:
  7. virtual ~ZITemperature(){};
  8. virtual int32_t getTemperature(int32_t& sensorval) = 0;
  9. };
  10. } // namespace iflytop