
#ifndef H7TEMPERATURESENSOR_H
#define H7TEMPERATURESENSOR_H

#include <Arduino_MachineControl.h>
#include "Component.h"

using namespace machinecontrol;


class H7TemperatureSensor : Component {
public:
    H7TemperatureSensor() : Component("H7TemperatureSensor", COMPONENT_NO_ID, COMPONENT_DEFAULT  ) {

    };
    ~H7TemperatureSensor();

};

#endif
