13 lines
216 B
Python
13 lines
216 B
Python
import MotorControl.servo as servo
|
|
|
|
class SteeringServo(servo.Servo):
|
|
|
|
@property
|
|
def percent(self):
|
|
# Set the
|
|
pass
|
|
|
|
@percent.setter
|
|
def percent(self, forward):
|
|
#
|
|
pass |