Files
picar/MotorControl/MotorServer.py

46 lines
1.7 KiB
Python

from threading import Timer, Thread
from gpiozero import Servo
import MotorControl.motorService_pb2 as motorService_pb2
import MotorControl.motorService_pb2_grpc as motorService_pb2_grpc
from MotorControl.gpiozero.motor_session import Motor
servo_pin = 18
timeout_length = 3
class MotorServicer(motorService_pb2_grpc.CarControlServicer):
def __init__(self):
self.motor = Motor()
self.servo = Servo(servo_pin)
self._timer = None
def SetThrottle(self, request, context):
# If we don't get a response every 3 seconds, stop the car.
# This isn't a stream right now, however may change it to be so since we'll constantly
# be sending values...
self.set_timeout(timeout_length)
return motorService_pb2.ThrottleResponse(throttleSet = (True if self.motor.set_throttle(request.throttle) else False))
def SetSteering(self, request, context):
# TODO: Fix this to use the motor object as well to check for bounds.
self.servo.value = request.steering
return motorService_pb2.SteeringResponse(steeringSet = True)
def set_timeout(self, min_timeout):
"""Stops the old timer and restarts it to the specified time.
min_timeout -- The minimum time that can be used for the timer.
vary_timout -- Default 200, the additional random varying time (0 - vary_timeout) to add to timer.
"""
if self._timer is not None:
self._timer.cancel()
self._timer = Timer(min_timeout, self.timeout_elapsed)
self._timer.start()
def timeout_elapsed(self):
"""Election or heartbeat timeout has elapsed."""
print("Node timeout elapsed")
self.motor.stop()