ESP_IOT v2.5
IOT ESP Coding
HDriverStepperClass.h
Go to the documentation of this file.
1//
2// HDriverStepperClass.hpp
3//
4//
5// Created by Scott Moody on 3/24/25.
6//
7
8#ifndef HDriverStepperClass_hpp
9#define HDriverStepperClass_hpp
10
11#include "../../Defines.h"
12
14
15//! An concrete class
17{
18public:
19 //! constructor
20 HDriverStepperClass(char *config);
21
22 //! destructor
24
25 //! Data members of class
26 //! Generic config info .. specific the the sensor type
27
28 //!starts the PTStepper
29 void start_MotorStepper();
30
31 //!setup the PTStepper
32 void setup_MotorStepper();
33
34 //! stops motor
35 void stop_MotorStepper();
36
37 //!loop the PTStepper (so timer can run)
38 void loop_MotorStepper();
39
40};
41
42#endif /* HDriverStepperClass_hpp */
An concrete class.
void setup_MotorStepper()
setup the PTStepper
HDriverStepperClass(char *config)
constructor
void start_MotorStepper()
starts the PTStepper
void stop_MotorStepper()
stops motor
~HDriverStepperClass()
destructor
void loop_MotorStepper()
loop the PTStepper (so timer can run)
An mostly virtual class.