CameraCar.Controllers.CarController.StartTurnRight C# (CSharp) Method

StartTurnRight() private method

private StartTurnRight ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult StartTurnRight()
        {
            _GPIO[MotorID.LeftF].Value = 1;
            _GPIO[MotorID.LeftB].Value = 0;
            _GPIO[MotorID.RightF].Value = 0;
            _GPIO[MotorID.RightB].Value = 1;
            return new HttpStatusCodeResult(HttpStatusCode.OK);
        }