8 lines
91 B
C++
8 lines
91 B
C++
#pragma once
|
|
|
|
class Servo {
|
|
public:
|
|
Servo();
|
|
|
|
void SetTargetAngle(float angle) = 0;
|
|
}; |