#line 1 "C:\\Users\\mc007\\Desktop\\osr\\lydia-printhead\\firmware\\tests\\osr-pid\\TC.h"
#ifndef TC_H
#define TC_H

#include "Component.h"
// wrapper for different types of temperature sensors

class TC : public Component
{
public:
  TC(String name, short id, Component *owner) : Component(name, id, Component::COMPONENT_DEFAULT, nullptr)
  {
    // setFlag(OBJECT_RUN_FLAGS::E_OF_DEBUG);
  }

  short setup()
  {
    return 0;
  }

  short loop()
  {

    return 0;
  }

  short debug()
  {
    return 0;
  }

  short info()
  {
    return 0;
  }

  virtual short read();

};

#endif // TC_H
