namespace RaspiControl { public static class NavigationConstants { public const int TURN_ANGLE_LEFT = -15; public const int TURN_ANGLE_RIGHT = 15; public const int SPEED_FORWARD = 350; public const int SPEED_BACKWARD = -350; public const bool STOP = true; } }