Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516171819 |
- /*
- * Looper.h
- *
- * Created on: 01.03.2022
- * Author: FSmilari
- */
-
- #ifndef LOOPABLE_H_
- #define LOOPABLE_H_
-
- class Loopable {
- public:
- virtual void loop(void);
- virtual ~Loopable() {
- }
- };
-
-
- #endif /* LOOPABLE_H_ */
|