#ifndef TC_H
#define TC_H


class TC : public Component
{

  H7TC(Addon *owner, short _channel) : 
    Component("TC", 0, Component::COMPONENT_DEFAULT, (Component*) owner ),
    channel(_channel)
  {
    setFlag(OBJECT_RUN_FLAGS::E_OF_DEBUG);
  }

  short setup()
  {
    return 0;
  }
  
  short loop()
  {
    
    return 0;
  }

  short debug(Stream *stream)
  {
    return 0;
  }

  short info(Stream *stream)
  {
    return 0;
  }

  short channel;

};

#endif // TC_H
