
class Temp {

public:
  int check_temp_frequency_sec;
  String strRawInfoTopic;
  
  Temp(const char* p_detector_type, int (*fp)(const String&, const String&)) {
  }

  String getDetectorType() {
    return String("");
  }

  void readConfig(const DynamicJsonDocument& json, const String& strInfoTopic) {

  }
  
  void readTempAndHumidity() {
  }
};

